feat: insights

* fix: migration for newly created self-hosting instances

* fix: build script

* wip

* wip

* wip

* fix: tailwind css
This commit is contained in:
Carl-Gerhard Lindesvärd
2025-12-19 09:37:15 +01:00
committed by GitHub
parent 1e4f02fb5e
commit 5f38560373
48 changed files with 4072 additions and 25 deletions

View File

@@ -100,6 +100,9 @@ async function createOldSessions() {
if (!row || row.count === '0') {
return null;
}
if (row.created_at.startsWith('1970')) {
return null;
}
return new Date(row.created_at);
} catch (e) {
return defaultDate;