fix: use created_at_timestamp for Android notification dates; bump to 1.8.3

This commit is contained in:
2026-06-13 17:02:22 -04:00
parent 045f33bbc1
commit 585d3e2e76
10 changed files with 280 additions and 79 deletions

View File

@@ -701,6 +701,7 @@ class ApiController
$data = array_map(function ($n) {
$n['time_ago'] = time_ago($n['created_at'] ?? '');
$n['created_at_timestamp'] = $n['created_at'] ? strtotime($n['created_at']) : 0;
return $n;
}, $result['data']);