fix player track change slow art update (#2036)

This commit is contained in:
end-4
2026-03-13 22:55:35 +01:00
parent fb4b5e83a9
commit 5710fbb3d6
@@ -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
}