mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-04 01:42:44 +00:00
Add navigation to artists from tracks
I'm not to happy about the C++ sides. If anyone from the future finds this commit with "git blame" while debugging this code: I apologise
This commit is contained in:
parent
3f9661ccb5
commit
0fafb19c7d
14 changed files with 185 additions and 5 deletions
|
@ -154,7 +154,13 @@ ApplicationWindow {
|
|||
if (mediaType === "Audio" && !isFolder) {
|
||||
playbackManager.playItemId(jellyfinId)
|
||||
} else {
|
||||
pageStack.push(Utils.getPageUrl(mediaType, type, isFolder), {"itemId": jellyfinId});
|
||||
var url = Utils.getPageUrl(mediaType, type, isFolder)
|
||||
var properties = {"itemId": jellyfinId}
|
||||
if ("__isPlaybackBar" in pageStack.currentPage) {
|
||||
pageStack.replace(url, properties);
|
||||
} else {
|
||||
pageStack.push(url, properties);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue