Browse Source

fix duplicates validation

main
ghost 1 year ago
parent
commit
01437065e3
  1. 4
      src/cli/yggo/import.php

4
src/cli/yggo/import.php

@ -122,11 +122,13 @@ for ($i = 0; $i <= $total; $i++) @@ -122,11 +122,13 @@ for ($i = 0; $i <= $total; $i++)
foreach ($query->fetchAll() as $remote)
{
$url = $remote->scheme . '://' . $remote->name . ($remote->port ? ':' . $remote->port : false) . $remote->uri;
$crc32url = crc32($url);
// Check for unique URL requested
if (isset($argv[6]))
{
$local = $index->search('@url "' . trim($argv[1]) . '"')
$local = $index->search('@url "' . trim($url) . '"')
->filter('crc32url', $crc32url)
->limit(1)
->get();

Loading…
Cancel
Save