Rename ArtistAlternateSpellings to ArtistAlternateNames

This commit is contained in:
Alex Cabal 2024-01-17 16:21:40 -06:00
parent f7ff76bf7d
commit f0bdd5596f
5 changed files with 18 additions and 18 deletions

View file

@ -822,7 +822,7 @@ class Artwork extends PropertiesBase{
$searchString = $this->Name;
$searchString .= ' ' . $this->Artist->Name;
$searchString .= ' ' . implode(' ', $this->Artist->AlternateSpellings);
$searchString .= ' ' . implode(' ', $this->Artist->AlternateNames);
foreach($this->Tags as $tag){
$searchString .= ' ' . $tag->Name;