Skip to content

Commit

Permalink
added sqlite3 database changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bryangerlach committed Sep 22, 2023
1 parent 194bbf6 commit 0279795
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified db_v2.sqlite3
Binary file not shown.
2 changes: 1 addition & 1 deletion src/peer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub(crate) struct PeerMap {
impl PeerMap {
pub(crate) async fn new() -> ResultType<Self> {
let db = std::env::var("DB_URL").unwrap_or({
let db = "db_v2.sqlite3".to_owned();
let mut db = "db_v2.sqlite3".to_owned();
#[cfg(all(windows, not(debug_assertions)))]
{
if let Some(path) = hbb_common::config::Config::icon_path().parent() {
Expand Down

0 comments on commit 0279795

Please sign in to comment.