We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb41a1f + 144f35e commit 0e35535Copy full SHA for 0e35535
Simperium/src/main/java/com/simperium/client/Bucket.java
@@ -351,6 +351,12 @@ public void run() {
351
return;
352
}
353
354
+ // Put object in backup store if not already there so that queued local deletion
355
+ // will send change event and remove object from server and all other platforms.
356
+ if (mBackupStore.get(object.getSimperiumKey()) == null) {
357
+ mBackupStore.put(object.getSimperiumKey(), object);
358
+ }
359
+
360
mChannel.queueLocalDeletion(object);
361
362
build.gradle
@@ -35,5 +35,5 @@ def gitDescribe() {
35
36
37
def static gitVersion() {
38
- '0.9.2'
+ '0.9.3'
39
0 commit comments