Clean up another bad usage of self in StorageSyncJob.
This commit is contained in:
parent
81ec9e96c7
commit
0b9515b58b
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ public class StorageSyncJob extends BaseJob {
|
|||
if (remoteManifest.getVersion() > localManifest.getVersion()) {
|
||||
Log.i(TAG, "[Remote Sync] Newer manifest version found!");
|
||||
|
||||
List<StorageId> localStorageIdsBeforeMerge = getAllLocalStorageIds(context, Recipient.self().fresh());
|
||||
List<StorageId> localStorageIdsBeforeMerge = getAllLocalStorageIds(context, self);
|
||||
IdDifferenceResult idDifference = StorageSyncHelper.findIdDifference(remoteManifest.getStorageIds(), localStorageIdsBeforeMerge);
|
||||
|
||||
if (idDifference.hasTypeMismatches()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue