diff --git a/src/main/kotlin/app/revanced/patches/reddit/ad/banner/annotations/HideBannerCompatibility.kt b/src/main/kotlin/app/revanced/patches/reddit/ad/banner/annotations/HideBannerCompatibility.kt index af21aa935..ebaf1e91a 100644 --- a/src/main/kotlin/app/revanced/patches/reddit/ad/banner/annotations/HideBannerCompatibility.kt +++ b/src/main/kotlin/app/revanced/patches/reddit/ad/banner/annotations/HideBannerCompatibility.kt @@ -5,7 +5,15 @@ import app.revanced.patcher.annotation.Package @Compatibility( [Package( - "com.reddit.frontpage", arrayOf("2023.05.0", "2023.08.0") + "com.reddit.frontpage", arrayOf( + "2023.05.0", + "2023.06.0", + "2023.07.0", + "2023.07.1", + "2023.08.0", + "2023.09.0", + "2023.09.1" + ) )] ) @Target(AnnotationTarget.CLASS) diff --git a/src/main/kotlin/app/revanced/patches/reddit/ad/general/annotations/GeneralAdsCompatibility.kt b/src/main/kotlin/app/revanced/patches/reddit/ad/general/annotations/GeneralAdsCompatibility.kt index 0c9f284b4..a56b6a459 100644 --- a/src/main/kotlin/app/revanced/patches/reddit/ad/general/annotations/GeneralAdsCompatibility.kt +++ b/src/main/kotlin/app/revanced/patches/reddit/ad/general/annotations/GeneralAdsCompatibility.kt @@ -5,7 +5,17 @@ import app.revanced.patcher.annotation.Package @Compatibility( [Package( - "com.reddit.frontpage", arrayOf("2021.45.0", "2022.43.0", "2023.05.0", "2023.08.0") + "com.reddit.frontpage", arrayOf( + "2021.45.0", + "2022.43.0", + "2023.05.0", + "2023.06.0", + "2023.07.0", + "2023.07.1", + "2023.08.0", + "2023.09.0", + "2023.09.1" + ) )] ) @Target(AnnotationTarget.CLASS)