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

Commit 3f4da6bf authored by Shubang Lu's avatar Shubang Lu
Browse files

[TIAF] Fix ClassCastException of content rating

Test: mmm
Bug: 366132585
Flag: EXEMPT bugfix
Change-Id: Iedc9decc4cb2516fd534ef62a26dd78af430155d
parent dc540b02
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: {