mediabunny 1.11.1 → 1.11.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15319,7 +15319,9 @@ ${cue.notes ?? ""}`;
15319
15319
  case 2274716 /* Language */:
15320
15320
  {
15321
15321
  if (!this.currentTrack) break;
15322
- if (this.currentTrack.languageCode) break;
15322
+ if (this.currentTrack.languageCode !== UNDETERMINED_LANGUAGE) {
15323
+ break;
15324
+ }
15323
15325
  this.currentTrack.languageCode = reader.readAsciiString(size);
15324
15326
  if (!isIso639Dash2LanguageCode(this.currentTrack.languageCode)) {
15325
15327
  this.currentTrack.languageCode = UNDETERMINED_LANGUAGE;