set app IDs in the filename postfix, remove lowercase

This commit is contained in:
ghost 2023-11-03 13:59:50 +02:00
parent 258d206f2e
commit 2e4129927d

View File

@ -2416,14 +2416,10 @@ class TorrentController extends AbstractController
$response->headers->set(
'Content-Disposition',
sprintf(
'attachment; filename="%s#%s.%s.torrent";',
mb_strtolower(
$this->getParameter('app.name')
),
$torrent->getId(),
mb_strtolower(
$file->getName()
)
'attachment; filename="%s [%s#%s].torrent";',
$file->getName(),
$this->getParameter('app.name'),
$torrent->getId()
)
);