Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion WordPress/Classes/Services/PostService.m
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ - (RemotePost *)remotePostWithPost:(AbstractPost *)post
remotePost.categories = [self remoteCategoriesForPost:postPost];
remotePost.metadata = [self remoteMetadataForPost:postPost];

// Because we can't get what's the self-hosted non JetPack site capabilities
// Because we can't get what's the self-hosted non Jetpack site capabilities
// only Admin users are allowed to set a post as sticky.
// This doesn't affect WPcom sites.
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ class WeeklyRoundupBackgroundTask: BackgroundTask {

func run(onError: @escaping (Error) -> Void, completion: @escaping (Bool) -> Void) {

// This will no longer run for WordPress as part of JetPack migration.
// This can be removed once JetPack migration is complete.
// This will no longer run for WordPress as part of Jetpack migration.
// This can be removed once Jetpack migration is complete.
guard JetpackNotificationMigrationService.shared.shouldPresentNotifications() else {
notificationScheduler.cancellAll()
notificationScheduler.cancelStaticNotification()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ - (void)configureSections
stickyPostSection,
@(PostSettingsSectionShare),
@(PostSettingsSectionMoreOptions) ] mutableCopy];
// Remove sticky post section for self-hosted non JetPack site
// Remove sticky post section for self-hosted non Jetpack site
// and non admin user
//
if (![self.apost.blog supports:BlogFeatureWPComRESTAPI] && !self.apost.blog.isAdmin) {
Expand Down