mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 07:48:40 +00:00
fixing type issue
This commit is contained in:
parent
c4b928f1b9
commit
5d4fd66879
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ class ConnectSignedPreKeyStore extends SignedPreKeyStore {
|
||||||
if (storeSerialized == null) {
|
if (storeSerialized == null) {
|
||||||
return store;
|
return store;
|
||||||
}
|
}
|
||||||
final storeHashMap = json.decode(storeSerialized) as List<List<dynamic>>;
|
final storeHashMap = json.decode(storeSerialized) as List<dynamic>;
|
||||||
for (final item in storeHashMap) {
|
for (final item in storeHashMap) {
|
||||||
store[item[0] as int] = base64Decode(item[1] as String);
|
store[item[0] as int] = base64Decode(item[1] as String);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue