Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #30 from tsirysndr/fix/sqlite-enable-wal

sqlite: enable Write-Ahead Logging mode

authored by

Tsiry Sandratraina and committed by
GitHub
bc700dc4 7d5c93ba

+3
+3
crates/library/src/lib.rs
··· 32 32 Ok(_) => {} 33 33 Err(_) => println!("artist_id column already exists"), 34 34 } 35 + sqlx::query("PRAGMA journal_mode=WAL") 36 + .execute(&pool) 37 + .await?; 35 38 Ok(pool) 36 39 }