From 89a4517f642d10ba766456f7c1830ad8cbaf2b23 Mon Sep 17 00:00:00 2001 From: Schuyler Eldridge Date: Wed, 5 Jun 2019 00:01:02 -0400 Subject: [PATCH] Show cover art not displaying on chromecast Signed-off-by: Schuyler Eldridge --- airsonic-main/src/main/webapp/script/playQueueCast.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airsonic-main/src/main/webapp/script/playQueueCast.js b/airsonic-main/src/main/webapp/script/playQueueCast.js index f0754c42..52af54e2 100644 --- a/airsonic-main/src/main/webapp/script/playQueueCast.js +++ b/airsonic-main/src/main/webapp/script/playQueueCast.js @@ -154,7 +154,7 @@ mediaInfo.metadata.albumName = song.album; mediaInfo.metadata.artist = song.artist; mediaInfo.metadata.trackNumber = song.trackNumber; - mediaInfo.metadata.images = [new chrome.cast.Image(song.remoteCoverArtUrl + "&size=384")]; + mediaInfo.metadata.images = [new chrome.cast.Image(song.remoteCoverArtUrl)]; mediaInfo.metadata.releaseYear = song.year; var request = new chrome.cast.media.LoadRequest(mediaInfo);