lib-search-engine: Squash another bug

This commit is contained in:
Starbeamrainbowlabs 2020-03-15 22:06:26 +00:00
parent b8f37597a6
commit 11ade94d62
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ class search
);
if(!empty($results)) {
usort($results, function($a, $b) : int {
return self::compare($a, $b);
return self::$sorter->compare($a, $b);
});
}