Capitalize the Frigate word (#5044)

This commit is contained in:
Felipe Santos
2023-01-13 10:18:15 -03:00
committed by GitHub
parent cf2466c8c1
commit 95596b39fd
23 changed files with 41 additions and 41 deletions

View File

@@ -747,7 +747,7 @@ def config_save():
jsonify(
{
"success": False,
"message": f"Could not write config file, be sure that frigate has write permission on the config file.",
"message": f"Could not write config file, be sure that Frigate has write permission on the config file.",
}
),
400,
@@ -756,8 +756,8 @@ def config_save():
try:
restart_frigate()
except Exception as e:
logging.error(f"Error restarting frigate: {e}")
return "Config successfully saved, unable to restart frigate", 200
logging.error(f"Error restarting Frigate: {e}")
return "Config successfully saved, unable to restart Frigate", 200
return "Config successfully saved, restarting...", 200