From 553fe2f0ae67e4242d1e1a4cc3c46ebf1beff140 Mon Sep 17 00:00:00 2001 From: lelo Date: Mon, 24 Mar 2025 12:52:46 +0100 Subject: [PATCH] fix initial timestamp --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 1c31272..d3da61f 100755 --- a/app.py +++ b/app.py @@ -363,7 +363,7 @@ def handle_request_initial_data(): rows = a.return_file_access() connections = [ { - 'timestamp': row[0], + 'timestamp': datetime.strptime(row[0], '%Y-%m-%dT%H:%M:%S.%f').strftime('%d.%m.%Y %H:%M:%S'), 'full_path': row[1], 'ip_address': row[2], 'user_agent': row[3]