mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix playlist runtime display
This commit is contained in:
parent
bc693bbdc6
commit
357932766d
2 changed files with 2 additions and 2 deletions
2
dashboard-ui/cordova/android/mediasession.js
vendored
2
dashboard-ui/cordova/android/mediasession.js
vendored
|
@ -37,7 +37,7 @@
|
||||||
var title = parts[parts.length - 1];
|
var title = parts[parts.length - 1];
|
||||||
|
|
||||||
// Switch these two around for video
|
// Switch these two around for video
|
||||||
if (state.NowPlayingItem.MediaType == 'Video') {
|
if (state.NowPlayingItem.MediaType == 'Video' && parts.length > 1) {
|
||||||
var temp = artist;
|
var temp = artist;
|
||||||
artist = title;
|
artist = title;
|
||||||
title = temp;
|
title = temp;
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
|
|
||||||
html += '<paper-fab class="listAvatar" icon="live-tv" item-icon></paper-fab>';
|
html += '<paper-fab class="listAvatar" icon="live-tv" item-icon></paper-fab>';
|
||||||
|
|
||||||
html += '<paper-item-body two-line>';
|
html += '<paper-item-body three-line>';
|
||||||
html += '<a class="clearLink" href="livetvseriestimer.html?id=' + timer.Id + '">';
|
html += '<a class="clearLink" href="livetvseriestimer.html?id=' + timer.Id + '">';
|
||||||
|
|
||||||
html += '<div>';
|
html += '<div>';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue