Fix media and sleep bar layout

This commit is contained in:
2026-05-19 16:24:11 +02:00
parent 6a5852654b
commit 36a15f3ed4
4 changed files with 42 additions and 8 deletions
+2 -2
View File
@@ -2050,7 +2050,7 @@ final class App
$mime = mime_content_type($path) ?: 'application/octet-stream';
header('Content-Type: ' . $mime);
header('Content-Length: ' . (string) filesize($path));
header('Cache-Control: private, max-age=3600');
header('Cache-Control: private, max-age=604800');
readfile($path);
exit;
}
@@ -2081,7 +2081,7 @@ final class App
$mime = mime_content_type($path) ?: 'application/octet-stream';
header('Content-Type: ' . $mime);
header('Content-Length: ' . (string) filesize($path));
header('Cache-Control: private, max-age=3600');
header('Cache-Control: private, max-age=604800');
readfile($path);
exit;
}