We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 491f064 + da22bfc commit 1de27beCopy full SHA for 1de27be
WordPress/src/main/java/org/wordpress/android/ui/posts/EditPostActivity.java
@@ -2334,8 +2334,9 @@ public void run() {
2334
if (shouldSave) {
2335
boolean isNotRestarting = mRestartEditorOption == RestartEditorOptions.NO_RESTART;
2336
if (isPublishable && !hasFailedMedia() && NetworkUtils.isNetworkAvailable(getBaseContext())
2337
- && isNotRestarting) {
+ && isNotRestarting && mSite.isUsingWpComRestApi()) {
2338
mPostEditorAnalyticsSession.setOutcome(Outcome.SAVE);
2339
+ // this method will invoke remote-auto-save which isn't supported on self-hosted sites
2340
savePostOnlineAndFinishAsync(isFirstTimePublish, doFinish);
2341
} else {
2342
0 commit comments