Skip to content

Commit

Permalink
Assume recents is enabled if can't read ini
Browse files Browse the repository at this point in the history
  • Loading branch information
wizzomafizzo committed Jun 29, 2024
1 parent b2f9274 commit d8bf19f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/mister/ini.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ func (mi *MisterIni) RemoveKey(key string) error {
func RecentsOptionEnabled() (bool, error) {
iniFile, err := GetActiveMisterIni()
if err != nil {
return false, nil
return true, nil
}

err = iniFile.Load()
Expand Down

0 comments on commit d8bf19f

Please sign in to comment.