Browse Source

skip binary index

main
ghost 5 months ago
parent
commit
0acf603eac
  1. 10
      src/index.php

10
src/index.php

@ -341,6 +341,16 @@ for ($block = $state; $block <= $blocks; $block++) @@ -341,6 +341,16 @@ for ($block = $state; $block <= $blocks; $block++)
);
}
// Skip binary content
if (false === mb_detect_encoding((string) $namespace, null, true)
||
false === mb_detect_encoding((string) $key, null, true)
||
false === mb_detect_encoding((string) $value, null, true))
{
continue;
}
// Add index record
$index->add(
$raw['time'],

Loading…
Cancel
Save