% import os % import sqlite3 % conn = sqlite3.connect(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'), timeout=30) % c = conn.cursor() % wanted_series = c.execute("SELECT COUNT(*) FROM table_episodes WHERE missing_subtitles != '[]'").fetchone() % wanted_movies = c.execute("SELECT COUNT(*) FROM table_movies WHERE missing_subtitles != '[]'").fetchone() % integration = c.execute("SELECT use_sonarr, use_radarr FROM table_settings_general").fetchone()
% restart_required = c.execute("SELECT updated, configured FROM table_settings_general").fetchone() % c.close() % if restart_required[0] == 1 and restart_required[1] == 1:
Bazarr need to be restarted to apply last update and changes to general settings.
% elif restart_required[0] == 1:
Bazarr need to be restarted to apply last update.
% elif restart_required[1] == 1:
Bazarr need to be restarted to apply changes to general settings.
% end