if (strtolower($item['name']) === strtolower($artist)) {
$elem['artist'] = $item['name'];
@ -78,7 +80,9 @@ class LudysuNetEaseLrc {
@@ -78,7 +80,9 @@ class LudysuNetEaseLrc {
}
// It's not easy for user to select the best match, so randomize the first match so that next time a new one will be returned
$info->addTrackInfoToList($artist, $title, "@@@" . $foundArray[rand(0, count($foundArray) - 1)]['id'], "I'm feeling lucky. Random result of the best matches.");
$info->addTrackInfoToList($artist, $title,
$this->LUCKY_PREFIX . $foundArray[rand(0, count($foundArray) - 1)]['id'], // Audio Statio will deduplicate, so add a special prefix
"I'm feeling lucky. Random result of the best matches.");