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

Commit 2c527b44 authored by Yixiao Luo's avatar Yixiao Luo
Browse files

TIAF: add missed type TableRequest in base class parcel creator

Bug: 217775517
Change-Id: I088868eae550cb9a02d18642ad81ce3e3854c4c6
parent e1b35316
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -56,6 +56,8 @@ public abstract class BroadcastInfoRequest implements Parcelable {
                    switch (type) {
                        case TvInputManager.BROADCAST_INFO_TYPE_TS:
                            return TsRequest.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_TABLE:
                            return TableRequest.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_SECTION:
                            return SectionRequest.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_PES:
+2 −0
Original line number Diff line number Diff line
@@ -57,6 +57,8 @@ public abstract class BroadcastInfoResponse implements Parcelable {
                    switch (type) {
                        case TvInputManager.BROADCAST_INFO_TYPE_TS:
                            return TsResponse.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_TABLE:
                            return TableResponse.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_SECTION:
                            return SectionResponse.createFromParcelBody(source);
                        case TvInputManager.BROADCAST_INFO_TYPE_PES: