fix: tracklist shorthand not working

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

View File

@ -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?