Skip to content

Commit

Permalink
Correct userTriggered flag when updating attachments
Browse files Browse the repository at this point in the history
  • Loading branch information
avazirna committed Oct 23, 2024
1 parent a27ab98 commit 019cd2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/org/commcare/activities/FormEntryActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ protected void onExternalAttachmentUpdated() {
}
String formStatus = formRecord.getStatus();
if (FormRecord.STATUS_INCOMPLETE.equals(formStatus)) {
saveDataToDisk(false, false, null, true, true);
saveDataToDisk(false, false, null, true, false);
}
}

Expand Down

0 comments on commit 019cd2d

Please sign in to comment.