From 260668f501b7018c93b9bdf4aa302455f4362484 Mon Sep 17 00:00:00 2001 From: Mariusz Chryc Date: Wed, 29 Jul 2020 18:05:45 +0200 Subject: [PATCH] Fix lintint errors --- src/components/remotecontrol/remotecontrol.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/remotecontrol/remotecontrol.js b/src/components/remotecontrol/remotecontrol.js index 24e58404d8..c0d594f123 100644 --- a/src/components/remotecontrol/remotecontrol.js +++ b/src/components/remotecontrol/remotecontrol.js @@ -143,10 +143,10 @@ define(['browser', 'datetime', 'backdrop', 'libraryBrowser', 'listView', 'imageL } } } - if (item.Album != null){ - albumName = '` + item.Album + ``; + if (item.Album != null) { + albumName = '' + item.Album + ''; } - context.querySelector('.nowPlayingAlbum').innerHTML = albumName + context.querySelector('.nowPlayingAlbum').innerHTML = albumName; context.querySelector('.nowPlayingArtist').innerHTML = artistsSeries; context.querySelector('.nowPlayingSongName').innerHTML = songName; } else if (item.Type == 'Episode') {