Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/src/commit/9327126d73c49288ecf0f6dce71530aaf7228a87/libs/js2py/constructors/jsboolean.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/js2py/constructors/jsboolean.py

17 lines
350 B

from ..base import *
BooleanPrototype.define_own_property('constructor', {
'value': Boolean,
'enumerable': False,
'writable': True,
'configurable': True
})
Boolean.define_own_property(
'prototype', {
'value': BooleanPrototype,
'enumerable': False,
'writable': False,
'configurable': False
})