fix gallery mtime

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-08-14 09:42:58 -04:00
parent 068f63badc
commit e4cc2b1ee0
+2 -2
View File
@@ -92,7 +92,7 @@ def register_api(app: FastAPI): # register api
'width': width,
'height': height,
'size': stat_size,
'mtime': stat_mtime,
'mtime': stat_mtime.timestamp(),
}
return content
except Exception as e:
@@ -119,7 +119,7 @@ def register_api(app: FastAPI): # register api
'width': width,
'height': height,
'size': stat_size,
'mtime': stat_mtime,
'mtime': stat_mtime.timestamp(),
}
return content
except Exception as e: