mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix label for video nodes
This commit is contained in:
parent
e2ca6227c2
commit
9670e87049
1 changed files with 2 additions and 1 deletions
|
@ -104,7 +104,8 @@ class VideoNodes(object):
|
||||||
# Root
|
# Root
|
||||||
if not mediatype == "photos":
|
if not mediatype == "photos":
|
||||||
if viewtype == "mixed":
|
if viewtype == "mixed":
|
||||||
root = self.commonRoot(order=0, label=dirname, tagname=tagname, roottype=0)
|
specialtag = "%s - %s" % (tagname, mediatype)
|
||||||
|
root = self.commonRoot(order=0, label=specialtag, tagname=tagname, roottype=0)
|
||||||
else:
|
else:
|
||||||
root = self.commonRoot(order=0, label=tagname, tagname=tagname, roottype=0)
|
root = self.commonRoot(order=0, label=tagname, tagname=tagname, roottype=0)
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue