changes from main

This commit is contained in:
end-4
2026-03-14 22:04:57 +01:00
parent 83dcb349da
commit e0f2875141
5 changed files with 53 additions and 3 deletions
@@ -77,7 +77,7 @@ Item { // Player instance
id: coverArtDownloader
property string targetFile: root.artUrl
property string artFilePath: root.artFilePath
command: [ "bash", "-c", `[ -f ${artFilePath} ] || curl -sSL '${targetFile}' -o '${artFilePath}'` ]
command: [ "bash", "-c", `[ -f ${artFilePath} ] || curl -4 -sSL '${targetFile}' -o '${artFilePath}'` ]
onExited: (exitCode, exitStatus) => {
root.downloaded = true
}