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): add claim_state to test AppState constructions

authored by

Malpercio and committed by
Tangled
336a38eb 97811e0d

+3
+3
apps/identity-wallet/src-tauri/src/oauth.rs
··· 906 906 oauth_session: std::sync::Mutex::new(None), 907 907 relay_client: OnceLock::new(), 908 908 pds_client: crate::pds_client::PdsClient::new(), 909 + claim_state: tokio::sync::Mutex::new(None), 909 910 }; 910 911 911 912 let url = make_test_url("code123", "WRONG-STATE"); ··· 935 936 oauth_session: std::sync::Mutex::new(None), 936 937 relay_client: OnceLock::new(), 937 938 pds_client: crate::pds_client::PdsClient::new(), 939 + claim_state: tokio::sync::Mutex::new(None), 938 940 }; 939 941 940 942 // First callback succeeds. ··· 966 968 oauth_session: std::sync::Mutex::new(None), 967 969 relay_client: OnceLock::new(), 968 970 pds_client: crate::pds_client::PdsClient::new(), 971 + claim_state: tokio::sync::Mutex::new(None), 969 972 }; 970 973 971 974 let url = make_test_url("mycode", "expected-state");