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

Fix for new notifier

pull/121/head
morpheus65535 7 years ago
parent d4938cb2fc
commit e3c1d98531

@ -174,7 +174,7 @@ if os.path.exists(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'))
try:
c.execute('DELETE FROM table_settings_notifier WHERE rowid > 24') #Modify this if we add more notification provider
rows = c.execute('SELECT name FROM table_settings_notifier WHERE name = "Discord"').fetchall()
if rows == "[]":
if len(rows) == 0:
providers = ['Discord', 'E-Mail', 'Emby', 'IFTTT', 'Stride', 'Windows']
for provider in providers:
c.execute('INSERT INTO `table_settings_notifier` (name, enabled) VALUES (?, ?);', (provider, '0'))

Loading…
Cancel
Save