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

Commit 464de963 authored by shubang's avatar shubang Committed by Shubang Lu
Browse files

[TIAF] Fix a bug of missing request ID

Bug: 273369119
Test: CTS
Change-Id: Ifdd9d3d4fcb3b7b0fc475a1829067038263c579b
parent 9476c7d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -594,7 +594,7 @@ public class ITvInteractiveAppSessionWrapper
    @Override
    public void notifyRecordingScheduled(String recordingId, String requestId) {
        mCaller.executeOrSendMessage(mCaller.obtainMessageOO(
                DO_NOTIFY_RECORDING_SCHEDULED, recordingId, recordingId));
                DO_NOTIFY_RECORDING_SCHEDULED, recordingId, requestId));
    }

    @Override
+1 −1
Original line number Diff line number Diff line
@@ -1420,7 +1420,7 @@ public final class TvInteractiveAppManager {
                return;
            }
            try {
                mService.notifyRecordingScheduled(mToken, recordingId, recordingId, mUserId);
                mService.notifyRecordingScheduled(mToken, recordingId, requestId, mUserId);
            } catch (RemoteException e) {
                throw e.rethrowFromSystemServer();
            }