1
0
mirror of https://github.com/talwat/lowfi synced 2025-04-15 23:23:24 +00:00

fix: tracklist shorthand not working

This commit is contained in:
Tal 2024-10-27 13:20:38 +01:00
parent e7ac0c9214
commit b12a7077a8

@ -75,8 +75,7 @@ impl List {
let name = dirs::data_dir()
.unwrap()
.join("lowfi")
.join(arg)
.join(".txt");
.join(format!("{}.txt", arg));
let raw = if name.exists() {
fs::read_to_string(name).await?