Skip to content

Commit

Permalink
fix: silly bug in mark as unread
Browse files Browse the repository at this point in the history
  • Loading branch information
TypicalAM committed Aug 20, 2023
1 parent 675420b commit 45d6637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ui/browser/browser.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
return m, nil

case backend.MarkAsUnreadMsg:
m.backend.ReadStatus.MarkAsRead(string(msg))
m.backend.ReadStatus.MarkAsUnread(string(msg))
return m, nil

case backend.MakeChoiceMsg:
Expand Down

0 comments on commit 45d6637

Please sign in to comment.