This commit is contained in:
otsmr 2025-04-14 21:42:54 +02:00
parent 0618ef873d
commit f37518fa05

View file

@ -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,
),
);
}