mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 00:29:11 +01:00
Update emoji to unicode 17.
This commit is contained in:
committed by
Cody Henthorne
parent
e68691c966
commit
01836b3a7c
@@ -195,9 +195,10 @@ public class ApplicationMigrations {
|
||||
static final int STICKER_PACK_ADDITION_2 = 151;
|
||||
static final int DELETED_BY_DB_MIGRATION = 152;
|
||||
static final int RELEASE_CHANNEL_RECIPIENT_FIX = 153;
|
||||
static final int EMOJI_VERSION_13 = 154;
|
||||
}
|
||||
|
||||
public static final int CURRENT_VERSION = 153;
|
||||
public static final int CURRENT_VERSION = 154;
|
||||
|
||||
/**
|
||||
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
|
||||
@@ -904,6 +905,10 @@ public class ApplicationMigrations {
|
||||
jobs.put(Version.RELEASE_CHANNEL_RECIPIENT_FIX, new ReleaseChannelRecipientFixMigrationJob());
|
||||
}
|
||||
|
||||
if (lastSeenVersion < Version.EMOJI_VERSION_13) {
|
||||
jobs.put(Version.EMOJI_VERSION_13, new EmojiDownloadMigrationJob());
|
||||
}
|
||||
|
||||
return jobs;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user