Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04e9d729 authored by Jakub Tyszkowski's avatar Jakub Tyszkowski Committed by Jakub Pawłowski
Browse files

broadcaster: Fix parceling subgroup

Adds the missing field write.

Bug: 150670922
Tag: #feature
Test: atest BluetoothLeBroadcastSubgroupTest
Sponsor: jpawlowski@

Change-Id: Ib795d8d89e07c1922a8e9a1547fc5bd560b469ac
parent e91f5f48
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -151,6 +151,8 @@ public final class BluetoothLeBroadcastSubgroup implements Parcelable {
                    builder.setCodecId(in.readLong());
                    builder.setCodecSpecificConfig(in.readTypedObject(
                            BluetoothLeAudioCodecConfigMetadata.CREATOR));
                    builder.setContentMetadata(
                            in.readTypedObject(BluetoothLeAudioContentMetadata.CREATOR));
                    List<BluetoothLeBroadcastChannel> channels = new ArrayList<>();
                    in.readTypedList(channels, BluetoothLeBroadcastChannel.CREATOR);
                    for (BluetoothLeBroadcastChannel channel : channels) {