Be more explicit with the ID we use for account updates.

This commit is contained in:
Greyson Parrelli 2020-06-02 09:03:54 -04:00
parent 7a859c8961
commit cd228c439e

View File

@ -404,7 +404,7 @@ public final class StorageSyncHelper {
if (!update.isPresent()) {
return;
}
applyAccountStorageSyncUpdates(context, update.get().getOld().getId(), update.get().getNew(), true);
applyAccountStorageSyncUpdates(context, StorageId.forAccount(Recipient.self().getStorageServiceId()), update.get().getNew(), true);
}
public static void applyAccountStorageSyncUpdates(@NonNull Context context, @NonNull StorageId storageId, @NonNull SignalAccountRecord update, boolean fetchProfile) {