Merge "Fix TvInputService#verifyCallbackError failure"

This commit is contained in:
Shubang Lu
2023-02-03 02:17:38 +00:00
committed by Android (Google) Code Review

View File

@@ -575,7 +575,7 @@ public class TvRecordingClient {
Log.w(TAG, "onError - session not created");
return;
}
if (mCallback == null) {
if (mCallback != null) {
mCallback.onError(error);
}
if (mTvIAppView != null) {