Skip to content

Commit

Permalink
fix searchstring
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
  • Loading branch information
Grotax committed Aug 6, 2022
1 parent 1a941bd commit 77d9a39
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/Db/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,8 @@ public function generateSearchIndex(): void
}

$search_string .= $this->getUrl();
$search_string .= 'UTF-8';

$this->setSearchIndex(mb_strtolower($search_string));
$this->setSearchIndex(mb_strtolower($search_string,'UTF-8'));
$this->setFingerprint($this->computeFingerprint());
$this->setContentHash($this->computeContentHash());
}
Expand Down

0 comments on commit 77d9a39

Please sign in to comment.