Skip to content

Commit

Permalink
Merge branch 'main' into chore/update_feeds_default
Browse files Browse the repository at this point in the history
  • Loading branch information
travispaul authored Apr 29, 2024
2 parents c340ab6 + b55bf79 commit 1b45d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ fn create_schema(path: &str) -> Result<(), CacheError> {
db_path.pop();
fs::create_dir_all(db_path)?;

let conn = Connection::open(&path)?;
let conn = Connection::open(path)?;

let mut tbl_stmt =
conn.prepare("SELECT name FROM sqlite_master where type = 'table' and name = ?;")?;
Expand Down

0 comments on commit 1b45d9f

Please sign in to comment.