dev #3

Merged
alientim merged 6 commits from dev into main 2025-10-12 17:38:40 +02:00
Showing only changes of commit 5ae38a9e20 - Show all commits

View File

@@ -104,9 +104,8 @@ def get_last_seen(dev_name: str):
continue
if latest_time:
date_str = latest_time.strftime("Zuletzt Online am %d.%m.%Y")
time_str = latest_time.strftime("um %H:%M Uhr")
return f"{date_str} {time_str}"
datetime_str = latest_time.strftime("Zuletzt Online am %d.%m.%Y um %H:%M Uhr")
return f"{datetime_str}"
return None