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

fork-5.53.8
Greyson Parrelli 2020-06-02 09:03:54 -04:00
rodzic 7a859c8961
commit cd228c439e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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) {