mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 11:18:41 +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(
|
||||
groupId: "CN332ZUGRP.eu.twonly.shared",
|
||||
synchronizable: false,
|
||||
accessibility: KeychainAccessibility.first_unlock,
|
||||
),
|
||||
);
|
||||
Map<int, PushUser> pushKeys = <int, PushUser>{};
|
||||
|
|
@ -354,7 +355,10 @@ Future setPushKeys(String storageKey, Map<int, PushUser> pushKeys) async {
|
|||
key: storageKey,
|
||||
value: jsonString,
|
||||
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