mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-24 19:00:26 +01:00
Split system names into first / last.
This commit is contained in:
@@ -70,6 +70,7 @@ public class ApplicationMigrations {
|
||||
static final int USER_NOTIFICATION = 25;
|
||||
static final int DAY_BY_DAY_STICKERS = 26;
|
||||
static final int BLOB_LOCATION = 27;
|
||||
static final int SYSTEM_NAME_SPLIT = 28;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -296,6 +297,10 @@ public class ApplicationMigrations {
|
||||
jobs.put(Version.BLOB_LOCATION, new BlobStorageLocationMigrationJob());
|
||||
}
|
||||
|
||||
if (lastSeenVersion < Version.SYSTEM_NAME_SPLIT) {
|
||||
jobs.put(Version.SYSTEM_NAME_SPLIT, new DirectoryRefreshMigrationJob());
|
||||
}
|
||||
|
||||
return jobs;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user