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

Commit 0d79d91d authored by Shubang Lu's avatar Shubang Lu Committed by Android (Google) Code Review
Browse files

Merge "[TIAF] Fix ClassCastException of content rating" into main

parents cc18f2fe 3f4da6bf
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -267,7 +267,9 @@ public class ITvInteractiveAppSessionWrapper
                break;
            }
            case DO_NOTIFY_CONTENT_BLOCKED: {
                mSessionImpl.notifyContentBlocked((TvContentRating) msg.obj);
                String contentRating = (String) msg.obj;
                mSessionImpl.notifyContentBlocked(
                        TvContentRating.unflattenFromString(contentRating));
                break;
            }
            case DO_NOTIFY_SIGNAL_STRENGTH: {