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

Commit a2081f11 authored by David Zhao's avatar David Zhao
Browse files

Fix requestId not being correctly passed

Bug: 272348676
Test: atest TvInteractiveAppServiceTest
Change-Id: I07b1d167c31372c6e8f068aa30133f1392e45b2b
parent 3e49d76a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -558,7 +558,7 @@ public class ITvInteractiveAppSessionWrapper
    @Override
    public void notifyRecordingStarted(String recordingId, String requestId) {
        mCaller.executeOrSendMessage(mCaller.obtainMessageOO(
                DO_NOTIFY_RECORDING_STARTED, recordingId, recordingId));
                DO_NOTIFY_RECORDING_STARTED, recordingId, requestId));
    }

    @Override
+1 −1
Original line number Diff line number Diff line
@@ -682,7 +682,7 @@ public class TvInteractiveAppView extends ViewGroup {
            Log.d(TAG, "notifyRecordingStarted");
        }
        if (mSession != null) {
            mSession.notifyRecordingStarted(recordingId, recordingId);
            mSession.notifyRecordingStarted(recordingId, requestId);
        }
    }