update base models

Signed-off-by: vladmandic <mandic00@live.com>
This commit is contained in:
vladmandic
2025-12-30 18:36:02 +01:00
parent 9358266d87
commit 595b07aef4
4 changed files with 8 additions and 6 deletions
+4 -2
View File
@@ -32,8 +32,10 @@ def format_dt(d: datetime) -> str:
def ts2utc(timestamp: int) -> datetime:
return datetime.fromtimestamp(timestamp, timezone.utc)
try:
return datetime.fromtimestamp(timestamp, timezone.utc)
except Exception:
return "unknown"
def active():
if shared.opts.disable_all_extensions == "all":