Update view_torrent.php

This commit is contained in:
Roman Kelesidis 2024-01-27 20:37:29 +07:00
parent 4e4d30376e
commit 6369aeadbe

View File

@ -97,7 +97,7 @@ class torrent
continue;
}
// Exclude padding files [Only for hybrid torrents]
if ((isset($f['attr']) ? $f['attr'] : null) === 'p')
if (isset($f['attr']) && $f['attr'] === 'p')
{
continue;
}