[TIAF] Fix a bug of missing request ID
Bug: 273369119 Test: CTS Change-Id: Ifdd9d3d4fcb3b7b0fc475a1829067038263c579b
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user