We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6197d28 commit 631ef30Copy full SHA for 631ef30
1 file changed
standalone/src-tauri/src/db.rs
@@ -158,10 +158,10 @@ fn resolve_extension_path(app_handle: &AppHandle) -> Option<PathBuf> {
158
159
fn extension_lib_name() -> String {
160
if cfg!(target_os = "windows") {
161
- "absurd".to_string()
+ "absurd.dll".to_string()
162
} else if cfg!(target_os = "macos") {
163
- "libabsurd".to_string()
+ "libabsurd.dylib".to_string()
164
} else {
165
+ "libabsurd.so".to_string()
166
}
167
0 commit comments