mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-08-23 21:15:00 +02:00
staticWindowTitle(fix): Order alphabetically on all appearances, change if to a ternary
This commit is contained in:
@@ -595,8 +595,7 @@ setInterval(function () {
|
||||
};
|
||||
|
||||
// update title, url and play info with new info
|
||||
if(settingsStore.get(settings.staticWindowTitle)) setTitle(staticTitle)
|
||||
else setTitle(songDashArtistTitle);
|
||||
settingsStore.get(settings.staticWindowTitle) ? setTitle(staticTitle) : setTitle(songDashArtistTitle);
|
||||
getTrackURL();
|
||||
currentSong = songDashArtistTitle;
|
||||
currentPlayStatus = currentStatus;
|
||||
|
Reference in New Issue
Block a user