From b39884e68f3687cea5c0717b906766055e67ffe5 Mon Sep 17 00:00:00 2001 From: Mathias Rasmussen Date: Tue, 23 Aug 2016 20:21:10 +0200 Subject: [PATCH] fix player poster image css bug --- src/renderer/pages/PlayerPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/pages/PlayerPage.js b/src/renderer/pages/PlayerPage.js index 94ce3ac5..711d05d1 100644 --- a/src/renderer/pages/PlayerPage.js +++ b/src/renderer/pages/PlayerPage.js @@ -607,7 +607,7 @@ function cssBackgroundImagePoster (state) { var torrentSummary = state.getPlayingTorrentSummary() var posterPath = TorrentSummary.getPosterPath(torrentSummary) if (!posterPath) return '' - return cssBackgroundImageDarkGradient() + `, url(${posterPath})` + return cssBackgroundImageDarkGradient() + `, url('${posterPath}')` } function cssBackgroundImageDarkGradient () {