Skip to content

Commit

Permalink
fix(list,trash): remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
ShuheiKubota committed Oct 23, 2021
1 parent c2fa112 commit adcd574
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func (c listCmd) Run(g globalCmd, args []string) error {
dt = time.Now()
}
list = append(list, listItem{
Content: content + dt.String(),
Content: content,
ID: m.Id,
Subject: getHeader(m.Payload.Headers, "Subject"),
Date: dt,
Expand Down
2 changes: 1 addition & 1 deletion cmd_trash.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func (c trashCmd) Run(g globalCmd, args []string) error {
dt = time.Now()
}
list = append(list, listItem{
Content: content + dt.String(),
Content: content,
ID: m.Id,
Subject: getHeader(m.Payload.Headers, "Subject"),
Date: dt,
Expand Down

0 comments on commit adcd574

Please sign in to comment.