Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/e1a1aa2ac83d38689eebfadef65aac204a4ab881?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Revert "Make dogpile.cache using memory only under Windows"

This reverts commit 6f18c5888b.
pull/26/head
Louis Vézina 7 years ago
parent 6f0c98e256
commit e1a1aa2ac8

@ -9,10 +9,8 @@ from list_subtitles import *
from utils import *
# configure the cache
if os.name == 'nt':
region.configure('dogpile.cache.memory')
else:
region.configure('dogpile.cache.dbm', arguments={'filename': os.path.join(os.path.dirname(__file__), 'data/cache/cachefile.dbm')})
#region.configure('dogpile.cache.dbm', arguments={'filename': os.path.join(os.path.dirname(__file__), 'data/cache/cachefile.dbm')})
region.configure('dogpile.cache.memory')
def download_subtitle(path, language, hi, providers):
video = scan_video(path)

Loading…
Cancel
Save