Skip to content

Commit

Permalink
feat: update ShowFolded in defaultUserConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
ppolariss committed Jul 29, 2024
1 parent fb8f837 commit e789e20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ type UserConfig struct {

var defaultUserConfig = UserConfig{
Notify: []string{"mention", "favorite", "report"},
ShowFolded: "fold",
ShowFolded: "hide",
}

var showFoldedOptions = []string{"fold", "hide", "show"}
var showFoldedOptions = []string{"hide", "fold", "show"}

func (user *User) GetID() int {
return user.ID
Expand Down

0 comments on commit e789e20

Please sign in to comment.