Skip to content

Commit

Permalink
fix(sync.go): update sync to no longer sync is_deleted flag while the…
Browse files Browse the repository at this point in the history
… api is being funky

Commented out IsDeleted field in the Reminder struct as the API is currently being inconsistent. Work around for issue sachaos#234.
  • Loading branch information
HacDan committed May 10, 2023
1 parent af8652c commit a178a21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ type Store struct {
Projects Projects `json:"projects"`
Sections Sections `json:"sections"`
Reminders []struct {
DateLang string `json:"date_lang"`
Due *Due `json:"due"`
ID string `json:"id"`
IsDeleted bool `json:"is_deleted"`
DateLang string `json:"date_lang"`
Due *Due `json:"due"`
ID string `json:"id"`
//IsDeleted int `json:"is_deleted"` Issue #234
ItemID string `json:"item_id"`
MinuteOffset int `json:"minute_offset"`
NotifyUID string `json:"notify_uid"`
Expand Down

0 comments on commit a178a21

Please sign in to comment.