Skip to content

Commit 631ef30

Browse files
committed
Revert "fix: drop extension"
This reverts commit 6197d28.
1 parent 6197d28 commit 631ef30

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • standalone/src-tauri/src

standalone/src-tauri/src/db.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,10 @@ fn resolve_extension_path(app_handle: &AppHandle) -> Option<PathBuf> {
158158

159159
fn extension_lib_name() -> String {
160160
if cfg!(target_os = "windows") {
161-
"absurd".to_string()
161+
"absurd.dll".to_string()
162162
} else if cfg!(target_os = "macos") {
163-
"libabsurd".to_string()
163+
"libabsurd.dylib".to_string()
164164
} else {
165-
"libabsurd".to_string()
165+
"libabsurd.so".to_string()
166166
}
167167
}

0 commit comments

Comments
 (0)