Browse Source

add missed alias check

main
ghost 1 year ago
parent
commit
68dc7f9f99
  1. 18
      src/crontab/import/feed.php

18
src/crontab/import/feed.php

@ -409,6 +409,12 @@ try @@ -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 @@ -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 @@ -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…
Cancel
Save