Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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: 2 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
25.6
-----
* [*] [internal] Update Gravatar SDK to 3.0.0 [#23701]
* [*] Enable navigating to an individual post's stats from within the "view more" screen for author stats. [#23761]
* [*] [Jetpack-only] Enable pubishing to non-Jetpack sites when sharing content to the Jetpack app. [#23778]

25.5
-----
Expand Down
5 changes: 1 addition & 4 deletions WordPress/WordPressShareExtension/AppExtensionsService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,7 @@ extension AppExtensionsService {
func fetchSites(onSuccess: @escaping ([RemoteBlog]?) -> (), onFailure: @escaping FailureBlock) {
let remote = AccountServiceRemoteREST(wordPressComRestApi: simpleRestAPI)

var filterJetpackSites = false
#if IS_JETPACK
filterJetpackSites = true
#endif
let filterJetpackSites = AppConfiguration.showJetpackSitesOnly

remote.getBlogs(filterJetpackSites, success: { blogs in
guard let blogs = blogs as? [RemoteBlog] else {
Expand Down