We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1442455 commit 03e1b0eCopy full SHA for 03e1b0e
src/store/mod.rs
@@ -36,7 +36,7 @@ pub fn new_store(identifier: &str) -> Store {
36
Store::new(Location::LocalStorage(identifier))
37
}
38
39
-#[cfg(not(target_os = "android"))]
+#[cfg(not(any(target_os = "android", target_arch = "wasm32")))]
40
fn get_desktop_path(identifier: &str) -> std::path::PathBuf {
41
let [qualifier, organization, application] = identifier.split('.').collect::<Vec<&str>>()[..3] else {
42
panic!("Invalid identifier");
0 commit comments