diff --git a/src/main/kotlin/app/revanced/patches/reddit/customclients/baconreader/api/patch/ChangeOAuthClientIdPatch.kt b/src/main/kotlin/app/revanced/patches/reddit/customclients/baconreader/api/patch/ChangeOAuthClientIdPatch.kt index 8d52d2743..cad02a6ab 100644 --- a/src/main/kotlin/app/revanced/patches/reddit/customclients/baconreader/api/patch/ChangeOAuthClientIdPatch.kt +++ b/src/main/kotlin/app/revanced/patches/reddit/customclients/baconreader/api/patch/ChangeOAuthClientIdPatch.kt @@ -20,7 +20,12 @@ import org.jf.dexlib2.iface.instruction.OneRegisterInstruction @Description("Changes the OAuth client ID. " + "The OAuth application type has to be \"Installed app\" " + "and the redirect URI has to be set to \"http://baconreader.com/auth\".") -@Compatibility([Package("com.onelouder.baconreader")]) +@Compatibility( + [ + Package("com.onelouder.baconreader"), + Package("com.onelouder.baconreader.premium") + ] +) class ChangeOAuthClientIdPatch : AbstractChangeOAuthClientIdPatch( "http://baconreader.com/auth", Options, listOf(GetAuthorizationUrlFingerprint, RequestTokenFingerprint) ) {