You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I assume you're referring to what is now line 1587.
I don't think I agree with your proposed change. This line should prevent adding duplicate string values to the array, therefore we check the value.
If you still disagree, perhaps you can show an example of how/why you think it's not working correctly?
Only the "arranger" tag is taken with in "comment" - because of the value check. Here I think check of "Key/description" is the right to prevent adding duplicate
Line 1590 in getid3.lib.php has an error
if (is_array($value) || empty($ThisFileInfo['comments'][$tagname]) || !in_array(trim($value), $ThisFileInfo['comments'][$tagname])) {
must be
if (is_array($value) || empty($ThisFileInfo['comments'][$tagname]) || !in_array(trim($key), $ThisFileInfo['comments'][$tagname])) {
The text was updated successfully, but these errors were encountered: