Fix crash around unknown storage enums.
This commit is contained in:
parent
718eedcb34
commit
4b6ff55779
1 changed files with 1 additions and 1 deletions
|
@ -699,7 +699,7 @@ public class SignalServiceAccountManager {
|
|||
List<StorageId> ids = new ArrayList<>(record.getIdentifiersCount());
|
||||
|
||||
for (ManifestRecord.Identifier id : record.getIdentifiersList()) {
|
||||
ids.add(StorageId.forType(id.getRaw().toByteArray(), id.getType().getNumber()));
|
||||
ids.add(StorageId.forType(id.getRaw().toByteArray(), id.getTypeValue()));
|
||||
}
|
||||
|
||||
SignalStorageManifest conflictManifest = new SignalStorageManifest(record.getVersion(), ids);
|
||||
|
|
Loading…
Add table
Reference in a new issue