mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-22 01:40:07 +01:00
Fix incorrect ACI/PNI storage for revoked invites in group updates.
This commit is contained in:
committed by
Greyson Parrelli
parent
10ae26c924
commit
86d78d2e5d
@@ -161,9 +161,10 @@ public class ApplicationMigrations {
|
||||
static final int SVR2_ENCLAVE_UPDATE_2 = 117;
|
||||
static final int WALLPAPER_MIGRATION_CLEANUP = 118;
|
||||
static final int AEP_INTRODUCTION = 119;
|
||||
static final int GROUP_EXTRAS_DB_FIX = 120;
|
||||
}
|
||||
|
||||
public static final int CURRENT_VERSION = 119;
|
||||
public static final int CURRENT_VERSION = 120;
|
||||
|
||||
/**
|
||||
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
|
||||
@@ -738,6 +739,10 @@ public class ApplicationMigrations {
|
||||
jobs.put(Version.AEP_INTRODUCTION, new AepMigrationJob());
|
||||
}
|
||||
|
||||
if (lastSeenVersion < Version.GROUP_EXTRAS_DB_FIX) {
|
||||
jobs.put(Version.GROUP_EXTRAS_DB_FIX, new DatabaseMigrationJob());
|
||||
}
|
||||
|
||||
return jobs;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user