Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1086,6 +1086,7 @@ public void onValueReceived(@Nullable String variable, @Nullable String value, @
break;
case "CurrentTrackMetaData":
case "CurrentURIMetaData":
case "TrackMetaData":
onValueReceivedCurrentMetaData(value);
break;
case "NextAVTransportURIMetaData":
Comment on lines 1086 to 1093
Copy link

Copilot AI Oct 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] TrackMetaData appears to be a vendor-specific variant; consider adding a brief inline comment to document why this additional key is handled here (e.g., 'Some renderers emit TrackMetaData instead of CurrentTrackMetaData/CurrentURIMetaData'). This will help future maintainers avoid removing it as redundant.

Copilot uses AI. Check for mistakes.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
break;
case "CurrentTrackMetaData":
case "CurrentURIMetaData":
case "TrackMetaData":
onValueReceivedCurrentMetaData(value);
break;
case "NextAVTransportURIMetaData":
break;
case "CurrentTrackMetaData":
case "CurrentURIMetaData":
case "TrackMetaData": // Some (non-compliant) renderers emit TrackMetaData instead of CurrentTrackMetaData/CurrentURIMetaData
onValueReceivedCurrentMetaData(value);
break;
case "NextAVTransportURIMetaData":

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

Expand Down