Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/77531090b2c2c98d7cbb7f562222d04fcfc66c89 You should set ROOT_URL correctly, otherwise the web may not work correctly.

no log: reduce debug call verbosity

pull/2156/head
Vitiko 2 years ago
parent 43a6630527
commit 77531090b2

@ -168,12 +168,12 @@ class _LanguageEquals(list):
for equals in self:
from_, to_ = equals
if from_ in items:
logger.debug("Adding %s to %s", to_, items)
logger.debug("Adding %s to %s item(s) set", to_, len(items))
to_add.append(to_)
new_items = items.copy()
new_items.update(to_add)
logger.debug("New set: %s", new_items)
logger.debug("New set: %s items", len(new_items))
return new_items
def update_subtitle(self, subtitle):

Loading…
Cancel
Save