mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 16:28:40 +00:00
fix #110
This commit is contained in:
parent
0618ef873d
commit
f37518fa05
1 changed files with 5 additions and 1 deletions
|
|
@ -330,6 +330,7 @@ Future<Map<int, PushUser>> getPushKeys(String storageKey) async {
|
||||||
iOptions: IOSOptions(
|
iOptions: IOSOptions(
|
||||||
groupId: "CN332ZUGRP.eu.twonly.shared",
|
groupId: "CN332ZUGRP.eu.twonly.shared",
|
||||||
synchronizable: false,
|
synchronizable: false,
|
||||||
|
accessibility: KeychainAccessibility.first_unlock,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
Map<int, PushUser> pushKeys = <int, PushUser>{};
|
Map<int, PushUser> pushKeys = <int, PushUser>{};
|
||||||
|
|
@ -354,7 +355,10 @@ Future setPushKeys(String storageKey, Map<int, PushUser> pushKeys) async {
|
||||||
key: storageKey,
|
key: storageKey,
|
||||||
value: jsonString,
|
value: jsonString,
|
||||||
iOptions: IOSOptions(
|
iOptions: IOSOptions(
|
||||||
groupId: "CN332ZUGRP.eu.twonly.shared", synchronizable: false),
|
groupId: "CN332ZUGRP.eu.twonly.shared",
|
||||||
|
synchronizable: false,
|
||||||
|
accessibility: KeychainAccessibility.first_unlock,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue