mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-25 12:17:22 +00:00
Re-run the e164 formatting application migration.
This commit is contained in:
@@ -181,9 +181,10 @@ public class ApplicationMigrations {
|
||||
static final int CHAT_FOLDER_STORAGE_SYNC = 137;
|
||||
static final int SVR2_ENCLAVE_UPDATE_3 = 138;
|
||||
static final int DUPLICATE_E164_FIX_3 = 139;
|
||||
static final int E164_FORMATTING_2 = 140;
|
||||
}
|
||||
|
||||
public static final int CURRENT_VERSION = 139;
|
||||
public static final int CURRENT_VERSION = 140;
|
||||
|
||||
/**
|
||||
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
|
||||
@@ -834,6 +835,10 @@ public class ApplicationMigrations {
|
||||
jobs.put(Version.DUPLICATE_E164_FIX_3, new DuplicateE164MigrationJob());
|
||||
}
|
||||
|
||||
if (lastSeenVersion < Version.E164_FORMATTING_2) {
|
||||
jobs.put(Version.E164_FORMATTING_2, new E164FormattingMigrationJob());
|
||||
}
|
||||
|
||||
return jobs;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user