Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/blame/commit/9336473f0b26da5b06ec4c3dd35d37909c072d92/libs/plex/objects/library/extra/director.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/plex/objects/library/extra/director.py

11 lines
274 B

6 years ago
from plex.objects.core.base import Descriptor, Property
class Director(Descriptor):
id = Property(type=int)
tag = Property
@classmethod
def from_node(cls, client, node):
return cls.construct(client, cls.helpers.find(node, 'Director'), child=True)