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

This commit is contained in:
Shubang Lu
2023-03-24 18:33:02 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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();
}