Skip to content

Commit

Permalink
bug fix to offline functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
KenWilliamson committed Feb 3, 2021
1 parent 433554c commit c928e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkboxItem.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func (a *NotesAPI) UpdateCheckboxItem(ni *CheckboxNoteItem) *Response {
rtn.Code = int64(stat)
}
if (!suc || stat != 200) && !a.retryCall {
a.FailUpdateCheckboxNoteItemList = append(a.FailAddCheckboxNoteItemList, *ni)
a.FailUpdateCheckboxNoteItemList = append(a.FailUpdateCheckboxNoteItemList, *ni)
a.setSavedCheckboxItem(ni)
}
}
Expand Down

0 comments on commit c928e32

Please sign in to comment.