Made it so database paths are built properly.

This commit is contained in:
2025-09-02 11:33:55 -04:00
parent a57b2db1ff
commit 3fc6bf0666
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "tavern"
version = "0.2.3"
version = "0.2.4"
edition = "2024"
description = "A blogging system that will allow you to write your blog in Markdown and then display it in HTML using Dioxus."
repository = "/CyberMages/tavern"

View File

@ -50,7 +50,7 @@ impl Database
.into())
})?;
let url: String = format!("sqlite:///{db_str}");
let url: String = format!("sqlite://{db_str}");
// Set up connection options with foreign keys enabled.
#[cfg(feature = "publisher")]