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

Commit 8c84ff5f authored by David Zhao's avatar David Zhao Committed by Automerger Merge Worker
Browse files

Merge "Fix requestId not being correctly passed" into udc-dev am: 43f58154

parents b6c83ced 43f58154
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);
        }
    }