mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-30 07:39:01 +03:00
UI Tweaks (#12002)
* Adjust review padding * Fix mse check * Don't fail when cpu property is missing * ignore lines without any spaces
This commit is contained in:
+1
-1
@@ -481,7 +481,7 @@ def logs(service: str):
|
||||
for rawLine in contents.splitlines():
|
||||
cleanLine = rawLine.strip()
|
||||
|
||||
if len(cleanLine) < 10:
|
||||
if len(cleanLine) < 10 or " " not in cleanLine:
|
||||
continue
|
||||
|
||||
if dateEnd == 0:
|
||||
|
||||
Reference in New Issue
Block a user