Skip to content

Commit

Permalink
fix(youtube/theme): add missing theme condition check (#771)
Browse files Browse the repository at this point in the history
  • Loading branch information
OxrxL committed Oct 11, 2022
1 parent 1eb0c5c commit c8803b9
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,17 @@ class CommentsFilterBarPatch : BytecodePatch(

method.addInstructions(
patchIndex, """
invoke-static {}, Lapp/revanced/integrations/utils/ThemeHelper;->isDarkTheme()Z
move-result v2
if-nez v2, :comments_filter_white
const v1, -0x1
if-ne v1, p1, :comments_filter_white
const/4 p1, 0x0
:comments_filter_white
if-eqz v2, :comments_filter_dark
const v1, -0xdededf
if-ne v1, p1, :comments_filter_dark
const/4 p1, 0x0
:comments_filter_white
""", listOf(ExternalLabel("comments_filter_dark", method.instruction(patchIndex)))
)
return PatchResultSuccess()
Expand Down

0 comments on commit c8803b9

Please sign in to comment.