An easy-to-host PDS on the ATProtocol, iPhone and MacOS. Maintain control of your keys and data, always.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(identity-wallet): import Location from security_framework::item (not key)

Location is only publicly exported from security_framework::item, not
security_framework::key. The previous import would fail to compile on
real iOS targets. Matches the import pattern in device_key.rs.

authored by

Malpercio and committed by
Tangled
bbbb0791 c86fe131

+2 -1
+2 -1
apps/identity-wallet/src-tauri/src/identity_store.rs
··· 345 345 fn get_or_create_per_did_device_key(did: &str) -> Result<DevicePublicKey, IdentityStoreError> { 346 346 use security_framework::{ 347 347 access_control::{ProtectionMode, SecAccessControl}, 348 - key::{GenerateKeyOptions, KeyType, Location, SecKey, Token}, 348 + item::Location, 349 + key::{GenerateKeyOptions, KeyType, SecKey, Token}, 349 350 }; 350 351 351 352 let pub_account = device_key_pub_account(did);