Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/toggle-checkboxes-in-view-mode' …
Browse files Browse the repository at this point in the history
…into toggle-checkboxes-in-view-mode
  • Loading branch information
stefan-niedermann committed Jan 2, 2020
2 parents e815d6b + 8554cea commit b142a28
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ public void onActivityCreated(@Nullable Bundle savedInstanceState) {
db.getNoteServerSyncHelper().addCallbackPull(new ICallback() {
@Override
public void onFinish() {
noteContent.setText(markdownProcessor.parse(db.getNote(note.getAccountId(), note.getId()).getContent()));
note = db.getNote(note.getAccountId(), note.getId());
noteContent.setText(markdownProcessor.parse(note.getContent()));
swipeRefreshLayout.setRefreshing(false);
}

Expand Down

0 comments on commit b142a28

Please sign in to comment.