diff --git a/tavern/Cargo.toml b/tavern/Cargo.toml index de383a6..96cfa91 100644 --- a/tavern/Cargo.toml +++ b/tavern/Cargo.toml @@ -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" diff --git a/tavern/src/database.rs b/tavern/src/database.rs index 076a898..4613b84 100644 --- a/tavern/src/database.rs +++ b/tavern/src/database.rs @@ -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")]