mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-02-03 10:35:32 +00:00
add missed alias check
This commit is contained in:
parent
14291afc93
commit
68dc7f9f99
@ -409,6 +409,12 @@ try
|
||||
continue;
|
||||
}
|
||||
|
||||
// Aliases check
|
||||
if (!isset($aliasMagnetId[$remoteMagnetDownload->magnetId]) || !isset($aliasUserId[$remoteMagnetDownload->userId]))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// Add new magnet download if not exist by timestamp added for this user
|
||||
if (!$db->findMagnetDownload($aliasMagnetId[$remoteMagnetDownload->magnetId],
|
||||
$aliasUserId[$remoteMagnetDownload->userId],
|
||||
@ -439,6 +445,12 @@ try
|
||||
continue;
|
||||
}
|
||||
|
||||
// Aliases check
|
||||
if (!isset($aliasMagnetId[$remoteMagnetView->magnetId]) || !isset($aliasUserId[$remoteMagnetView->userId]))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// Add new magnet view if not exist by timestamp added for this user
|
||||
if (!$db->findMagnetView($aliasMagnetId[$remoteMagnetView->magnetId],
|
||||
$aliasUserId[$remoteMagnetView->userId],
|
||||
@ -469,6 +481,12 @@ try
|
||||
continue;
|
||||
}
|
||||
|
||||
// Aliases check
|
||||
if (!isset($aliasMagnetId[$remoteMagnetStar->magnetId]) || !isset($aliasUserId[$remoteMagnetStar->userId]))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// Add new magnet star if not exist by timestamp added for this user
|
||||
if (!$db->findMagnetStar($aliasMagnetId[$remoteMagnetStar->magnetId],
|
||||
$aliasUserId[$remoteMagnetStar->userId],
|
||||
|
Loading…
x
Reference in New Issue
Block a user