Skip to content

Commit cdc7817

Browse files
committed
Don't save the note after a loadNoteTask since it is a local load.
1 parent db2b62b commit cdc7817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Simplenote/src/main/java/com/automattic/simplenote/NoteEditorFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ protected Void doInBackground(String... args) {
531531
protected void onPostExecute(Void nada) {
532532
if (getActivity() == null || getActivity().isFinishing())
533533
return;
534-
refreshContent(true);
534+
refreshContent(false);
535535
if (mMatchOffsets != null) {
536536
int columnIndex = mNote.getBucket().getSchema().getFullTextIndex().getColumnIndex(Note.CONTENT_PROPERTY);
537537
mHighlighter.highlightMatches(mMatchOffsets, columnIndex);

0 commit comments

Comments
 (0)