some fixes

This commit is contained in:
naielv
2026-01-26 09:15:54 +01:00
parent 03f6e566fa
commit 04dfa477d2

View File

@@ -12,12 +12,15 @@ if (!file_exists($path) || !is_file($path)) {
header("HTTP/1.1 404 Not Found"); header("HTTP/1.1 404 Not Found");
die("File not found"); die("File not found");
} }
$mime = mime_content_type($path);
// Check if thumbnail is requested
if (file_exists($path . ".thumbnail") && $_GET["thumbnail"] == "1") { if (file_exists($path . ".thumbnail") && $_GET["thumbnail"] == "1") {
$path .= ".thumbnail"; $path .= ".thumbnail";
$uripath .= ".thumbnail"; $uripath .= ".thumbnail";
// die(); $mime = "image/jpeg";
} }
header("Content-Type: " . mime_content_type($path)); header("Content-Type: " . $mime);
header('Content-Length: ' . filesize($path)); header('Content-Length: ' . filesize($path));
header('Cache-Control: max-age=7200'); header('Cache-Control: max-age=7200');
header("X-Accel-Redirect: $uripath"); header("X-Accel-Redirect: $uripath");