Skip to content

Commit 4082d95

Browse files
committed
lint: format
1 parent 1cd88f9 commit 4082d95

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • standalone/src-tauri/src

standalone/src-tauri/src/db.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ impl DatabaseHandle {
9292

9393
fn resolve_extension_path(app_handle: &AppHandle) -> Option<PathBuf> {
9494
let mut candidates: Vec<(&str, PathBuf)> = Vec::new();
95-
match app_handle
96-
.path()
97-
.resolve(Path::new("bin").join("absurd-extension"), BaseDirectory::Resource)
98-
{
95+
match app_handle.path().resolve(
96+
Path::new("bin").join("absurd-extension"),
97+
BaseDirectory::Resource,
98+
) {
9999
Ok(path) => candidates.push(("bundled", path)),
100100
Err(err) => log::debug!("Failed to resolve bundled extension path: {}", err),
101101
}

0 commit comments

Comments
 (0)