Index: sources/ApplicationPost.cpp =================================================================== diff -u -re5577fbd781ded0678882680d5d31f08f56c9c68 -r3c10146198b48da18d2e8b242e0605461fdc92e8 --- sources/ApplicationPost.cpp (.../ApplicationPost.cpp) (revision e5577fbd781ded0678882680d5d31f08f56c9c68) +++ sources/ApplicationPost.cpp (.../ApplicationPost.cpp) (revision 3c10146198b48da18d2e8b242e0605461fdc92e8) @@ -185,7 +185,10 @@ */ bool ApplicationPost::checkCloudSync() { - bool ok = _content.contains(_postmsg_cloudsync + _postmsg_postfix_passed); + bool ok = true; + if (! gDisableCloudSyncFailStop ) { + ok = _content.contains(_postmsg_cloudsync + _postmsg_postfix_passed); + } if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_UI_POST_FAILURE_CLOUDSYNC); emit didCloudSync(ok); return ok;