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

Commit 43f58154 authored by David Zhao's avatar David Zhao Committed by Android (Google) Code Review
Browse files

Merge "Fix requestId not being correctly passed" into udc-dev

parents 5ac8a614 a2081f11
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -558,7 +558,7 @@ public class ITvInteractiveAppSessionWrapper
    @Override
    @Override
    public void notifyRecordingStarted(String recordingId, String requestId) {
    public void notifyRecordingStarted(String recordingId, String requestId) {
        mCaller.executeOrSendMessage(mCaller.obtainMessageOO(
        mCaller.executeOrSendMessage(mCaller.obtainMessageOO(
                DO_NOTIFY_RECORDING_STARTED, recordingId, recordingId));
                DO_NOTIFY_RECORDING_STARTED, recordingId, requestId));
    }
    }


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