forgot to add 1000 to the numbers

This commit is contained in:
Sorunome 2020-05-17 15:32:06 +02:00
parent 0219a42c07
commit e87053b4f1
No known key found for this signature in database
GPG Key ID: B19471D07FC9BE9C
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ class KeyVerification {
}
List<int> get sasNumbers {
return _bytesToInt(_makeSas(5), 13);
return _bytesToInt(_makeSas(5), 13).map((n) => n + 1000).toList();
}
List<KeyVerificationEmoji> get sasEmojis {