Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/69a74c50041ddf6542a28fed6efa5f3e9e00bea6 You should set ROOT_URL correctly, otherwise the web may not work correctly.
pull/26/head
Louis Vézina 7 years ago
parent 2d0e09dff2
commit 69a74c5004

@ -60,7 +60,7 @@ def store_subtitles(file):
conn_db = sqlite3.connect(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'))
c_db = conn_db.cursor()
c_db.execute("UPDATE table_episodes SET subtitles = ? WHERE path = ?", (str(actual_subtitles).encode('string_escape'), path_replace_reverse(file)))
c_db.execute("UPDATE table_episodes SET subtitles = ? WHERE path = ?", (actual_subtitles.encode('string_escape'), path_replace_reverse(file)))
conn_db.commit()
c_db.close()

Loading…
Cancel
Save