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

Commit c664a6ab authored by Shubang Lu's avatar Shubang Lu Committed by Automerger Merge Worker
Browse files

Merge "[TIAF] Fix a bug of missing request ID" into udc-dev am: 68e0f1c2

parents 55c243d2 68e0f1c2
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();
            }