We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Undefined index: comments
at vendor/james-heinrich/getid3/getid3/getid3.lib.php:1607 1603▕ 'tracknumber' => 'track_number', 1604▕ 'track' => 'track_number', 1605▕ ); 1606▕ foreach ($StandardizeFieldNames as $badkey => $goodkey) { ➜ 1607▕ if (array_key_exists($badkey, $ThisFileInfo['comments']) && !array_key_exists($goodkey, $ThisFileInfo['comments'])) { 1608▕ $ThisFileInfo['comments'][$goodkey] = $ThisFileInfo['comments'][$badkey]; 1609▕ unset($ThisFileInfo['comments'][$badkey]); 1610▕ } 1611▕ }
The text was updated successfully, but these errors were encountered:
#304 avoid undefined comments key
e54782d
#304
Fixed in e54782d
Sorry, something went wrong.
No branches or pull requests
Undefined index: comments
at vendor/james-heinrich/getid3/getid3/getid3.lib.php:1607
1603▕ 'tracknumber' => 'track_number',
1604▕ 'track' => 'track_number',
1605▕ );
1606▕ foreach ($StandardizeFieldNames as $badkey => $goodkey) {
➜ 1607▕ if (array_key_exists($badkey, $ThisFileInfo['comments']) && !array_key_exists($goodkey, $ThisFileInfo['comments'])) {
1608▕ $ThisFileInfo['comments'][$goodkey] = $ThisFileInfo['comments'][$badkey];
1609▕ unset($ThisFileInfo['comments'][$badkey]);
1610▕ }
1611▕ }
The text was updated successfully, but these errors were encountered: