count downloads toal/unique

This commit is contained in:
ghost 2023-08-28 11:38:22 +03:00
parent b2cd2db96b
commit 4cc5443669
2 changed files with 3 additions and 7 deletions

Binary file not shown.

View File

@ -130,12 +130,8 @@ switch (isset($_GET['target']) ? urldecode($_GET['target']) : false)
// Request valid
else
{
// Download exists, trigger delete
if (!$db->findMagnetDownloadsTotalByUserId($magnet->magnetId, $userId))
{
// Download not exists, add new record
$db->addMagnetDownload($magnet->magnetId, $userId, time());
}
// Update download stats
$db->addMagnetDownload($magnet->magnetId, $userId, time());
// Build magnet link
$link = [];
@ -210,7 +206,7 @@ switch (isset($_GET['target']) ? urldecode($_GET['target']) : false)
$uri->value)));
}
// Redirect to edit page
// Return download link
header(
sprintf('Location: %s', implode('&', $link))
);