diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 6c6a462874f3..55182b92a312 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,5 +1,6 @@ 22.8 ----- +* [*] Blogging Reminders: Disabled prompt for self-hosted sites not connected to Jetpack. [#20970] * [**] [internal] Do not save synced blogs if the app has signed out. [#20959] * [**] [internal] Make sure synced posts are saved before calling completion block. [#20960] diff --git a/WordPress/Classes/ViewRelated/Blog/Blogging Reminders/BloggingRemindersFlow.swift b/WordPress/Classes/ViewRelated/Blog/Blogging Reminders/BloggingRemindersFlow.swift index 334c7e5dcbd3..40ae94d7981d 100644 --- a/WordPress/Classes/ViewRelated/Blog/Blogging Reminders/BloggingRemindersFlow.swift +++ b/WordPress/Classes/ViewRelated/Blog/Blogging Reminders/BloggingRemindersFlow.swift @@ -11,7 +11,7 @@ class BloggingRemindersFlow { delegate: BloggingRemindersFlowDelegate? = nil, onDismiss: DismissClosure? = nil) { - guard Feature.enabled(.bloggingReminders) && JetpackNotificationMigrationService.shared.shouldPresentNotifications() else { + guard blog.areBloggingRemindersAllowed() else { return }