Add support for Emoji v15.0

This commit is contained in:
Greyson Parrelli
2023-06-29 13:43:02 -04:00
parent fe20de2995
commit be5cad1cec
21 changed files with 7 additions and 2 deletions

View File

@@ -131,9 +131,10 @@ public class ApplicationMigrations {
static final int PREKEY_SYNC = 87;
static final int DEDUPE_DB_MIGRATION = 88;
static final int DEDUPE_DB_MIGRATION_2 = 89;
static final int EMOJI_VERSION_8 = 90;
}
public static final int CURRENT_VERSION = 89;
public static final int CURRENT_VERSION = 90;
/**
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
@@ -591,6 +592,10 @@ public class ApplicationMigrations {
jobs.put(Version.DEDUPE_DB_MIGRATION_2, new DatabaseMigrationJob());
}
if (lastSeenVersion < Version.EMOJI_VERSION_8) {
jobs.put(Version.EMOJI_VERSION_8, new EmojiDownloadMigrationJob());
}
return jobs;
}