You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently the Addressbook is missing a refresh function to refresh addresses from a mutt alias file. The type is currently:
Maybe (IOAddressBook)
this might be fine and we need to use try and catch any exceptions to show in the UI. However one downside is that we need to "lift" and throw ParseErrors. If we use Maybe (Either Error (IO AddressBook)) it will get gnarly but may represent parsing errors better.
Describe the solution you'd like
Figure out which solution is better.
Describe alternatives you've considered
See description
Additional context
none
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently the Addressbook is missing a refresh function to refresh addresses from a mutt alias file. The type is currently:
this might be fine and we need to use
try
and catch any exceptions to show in the UI. However one downside is that we need to "lift" and throwParseError
s. If we useMaybe (Either Error (IO AddressBook))
it will get gnarly but may represent parsing errors better.Describe the solution you'd like
Figure out which solution is better.
Describe alternatives you've considered
See description
Additional context
none
The text was updated successfully, but these errors were encountered: