mirror of
https://github.com/kvazar-network/crawler.git
synced 2025-01-09 14:48:13 +00:00
remove extra rule
This commit is contained in:
parent
1420cb9750
commit
a9383d59ae
@ -352,11 +352,11 @@ for ($block = $state; $block <= $blocks; $block++)
|
||||
}
|
||||
|
||||
// Skip base64 index
|
||||
if ((strlen($namespace) % 4 == 0 && base64_encode(base64_decode($namespace, true)) === $namespace)
|
||||
if (base64_encode(base64_decode($namespace, true)) === $namespace
|
||||
||
|
||||
(strlen($key) % 4 == 0 && base64_encode(base64_decode($key, true)) === $key)
|
||||
base64_encode(base64_decode($key, true)) === $key
|
||||
||
|
||||
(strlen($value) % 4 == 0 && base64_encode(base64_decode($value, true)) === $value))
|
||||
base64_encode(base64_decode($value, true)) === $value)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user