Part part = story.getExcerpt(); //retrieves a relation to a part in story.
part.setText(editStory.getText().toString());
part.saveAsync(new AsyncCallback<Part>() {
@Override
public void handleResponse(Part part) {
}
@Override
public void handleFault(BackendlessFault backendlessFault) {
Log.d(TAG, backendlessFault.getMessage());
}
});
Yes. I realise now that the request always works the first time. The second time it fails with this exception instantly. If I restart the app, the request works again one time, and fails the remaining times.
Is it possible for you to send me some part of your project, which would reproduce the issue, to my email - sergey.chupov@themidnightcoders.com? Or if not, then at least the Part class implementation.
This error is also showing up to me and it is really frustrating. It shows up after updating a record in a table. The most surprising thing of it all is that it happens after several times of updating (not always) and once it shows up for the first time, it persists for the rest of the app lifetime.
Already done with a previous version and it seems that it has been fixed. Still I grabbed the latest version and we will see if same error will show up. Thanks!