Skip to content

Commit 3c93d77

Browse files
committed
fix: correct resources look up path
1 parent 9884e4e commit 3c93d77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • standalone/src-tauri/src

standalone/src-tauri/src/db.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ fn resolve_extension_path(app_handle: &AppHandle) -> Option<PathBuf> {
110110
let lib_name = extension_lib_name();
111111
match app_handle.path().resource_dir() {
112112
Ok(resource_dir) => {
113-
let resource_path = resource_dir.join(&lib_name);
113+
let resource_path = resource_dir.join("resources").join(&lib_name);
114114
log::debug!(
115115
"Checking resource SQLite extension at {}",
116116
resource_path.display()

0 commit comments

Comments
 (0)