diff options
author | 2025-04-18 18:58:19 +0100 | |
---|---|---|
committer | 2025-04-18 18:58:19 +0100 | |
commit | cb8d485fb4612558e87449a31f18ade8c879f754 (patch) | |
tree | c9283f752c0625eb904654ba5cb947b03143b3b9 | |
parent | 61b755c890dcaa66daa35942ca87cc00269b0fe9 (diff) | |
download | luz-cb8d485fb4612558e87449a31f18ade8c879f754.tar.gz luz-cb8d485fb4612558e87449a31f18ade8c879f754.tar.bz2 luz-cb8d485fb4612558e87449a31f18ade8c879f754.zip |
fix(filamento): db url
-rw-r--r-- | filamento/src/db.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filamento/src/db.rs b/filamento/src/db.rs index ce0b35a..36ce7bf 100644 --- a/filamento/src/db.rs +++ b/filamento/src/db.rs @@ -39,7 +39,7 @@ impl Db { .await?; } let url = format!( - "sqlite://{}", + "{}", path.as_ref() .to_str() .ok_or(DatabaseOpenError::InvalidPath)? |