bugfix: escaping in filename

This commit is contained in:
2025-09-11 16:27:18 +02:00
parent 0fe55ba06d
commit c1f8066688

View File

@@ -9,7 +9,6 @@ BEGIN {
}
}
{
gsub("&", "\\\\&")
parentid = $1
id = $2
med = $3
@@ -18,6 +17,8 @@ BEGIN {
title = $6
artist = $7
deco = local_recordings[id] ? $8 : ""
gsub("&", "\\\\&", title)
gsub("&", "\\\\&", artist)
# Parse duration
if (dur) {
dur = int(dur / 1000)