mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-21 09:20:19 +01:00
Fix pni in aci only field of decline invite for backupv2.
This commit is contained in:
committed by
Greyson Parrelli
parent
0b3a949264
commit
8b6b0a30e5
@@ -172,9 +172,10 @@ public class ApplicationMigrations {
|
||||
static final int DUPLICATE_E164_FIX = 128;
|
||||
static final int FTS_TRIGGER_FIX = 129;
|
||||
static final int THREAD_TABLE_PINNED_MIGRATION = 130;
|
||||
static final int GROUP_DECLINE_INVITE_FIX = 131;
|
||||
}
|
||||
|
||||
public static final int CURRENT_VERSION = 130;
|
||||
public static final int CURRENT_VERSION = 131;
|
||||
|
||||
/**
|
||||
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
|
||||
@@ -793,6 +794,10 @@ public class ApplicationMigrations {
|
||||
jobs.put(Version.THREAD_TABLE_PINNED_MIGRATION, new DatabaseMigrationJob());
|
||||
}
|
||||
|
||||
if (lastSeenVersion < Version.GROUP_DECLINE_INVITE_FIX) {
|
||||
jobs.put(Version.GROUP_DECLINE_INVITE_FIX, new DatabaseMigrationJob());
|
||||
}
|
||||
|
||||
return jobs;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user