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/a582a392b004c1b87f207d909f6840a62d4238ef/libs/subliminal_patch/providers/shooter.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/subliminal_patch/providers/shooter.py

17 lines
497 B

7 years ago
# coding=utf-8
6 years ago
from __future__ import absolute_import
7 years ago
from subliminal.providers.shooter import ShooterProvider as _ShooterProvider, ShooterSubtitle as _ShooterSubtitle
class ShooterSubtitle(_ShooterSubtitle):
def __init__(self, language, hash, download_link):
super(ShooterSubtitle, self).__init__(language, hash, download_link)
self.release_info = hash
self.page_link = download_link
class ShooterProvider(_ShooterProvider):
subtitle_class = ShooterSubtitle