forked from wallabag/wallabag
Convert tag label to lowercase in RuleBasedTagger
Fixes #4266 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
@ -94,6 +94,7 @@ class RuleBasedTagger
|
||||
*/
|
||||
private function getTag($label)
|
||||
{
|
||||
$label = mb_convert_case($label, \MB_CASE_LOWER);
|
||||
$tag = $this->tagRepository->findOneByLabel($label);
|
||||
|
||||
if (!$tag) {
|
||||
|
||||
Reference in New Issue
Block a user