Remove port from file download URLs in attachment_store.php and upload_store.php

This commit is contained in:
Jeppe Bundgaard
2026-02-16 15:10:38 +01:00
parent 0c411fa3b8
commit 1791a62992
2 changed files with 2 additions and 2 deletions
@@ -81,6 +81,6 @@ class attachment_store implements minio_uploads_i
public function generateDirectDownloadUrl(string $fileName): string
{
// Generate a direct download URL for the given file name
return 'https://api.truckwash.dk:4433/files/' . $fileName;
return 'https://api.truckwash.dk/files/' . $fileName;
}
}