Fix collection sorting in bulk downloads

This commit is contained in:
Alex Cabal 2022-07-11 11:01:15 -05:00
parent 282909ef6a
commit c95d8c4954
2 changed files with 2 additions and 2 deletions

View file

@ -14,6 +14,6 @@ class Collection{
}
public function GetSortedName(): string{
return preg_replace('/^(the|and|a|)\b/ius', '', $this->Name);
return preg_replace('/^(the|and|a|)\s/ius', '', $this->Name);
}
}