Updated emoji to version 14.0

This commit is contained in:
Greyson Parrelli
2022-04-22 11:40:07 -04:00
parent f15072bc8d
commit 530403ec04
21 changed files with 13 additions and 8 deletions

View File

@@ -101,9 +101,10 @@ public class ApplicationMigrations {
static final int PNI_IDENTITY_2 = 57;
static final int PNI_IDENTITY_3 = 58;
static final int STORY_DISTRIBUTION_LIST_SYNC = 59;
static final int EMOJI_VERSION_7 = 60;
}
public static final int CURRENT_VERSION = 59;
public static final int CURRENT_VERSION = 60;
/**
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
@@ -441,6 +442,10 @@ public class ApplicationMigrations {
jobs.put(Version.STORY_DISTRIBUTION_LIST_SYNC, new StorageServiceMigrationJob());
}
if (lastSeenVersion < Version.EMOJI_VERSION_7) {
jobs.put(Version.EMOJI_VERSION_7, new EmojiDownloadMigrationJob());
}
return jobs;
}