summaryrefslogtreecommitdiffstats
path: root/ui/stash.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/stash.go')
-rw-r--r--ui/stash.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/stash.go b/ui/stash.go
index f96d4f2..ccfb169 100644
--- a/ui/stash.go
+++ b/ui/stash.go
@@ -219,6 +219,16 @@ func stashUpdate(msg tea.Msg, m stashModel) (stashModel, tea.Cmd) {
case errMsg:
m.err = msg
+ case stashLoadErrMsg:
+ m.err = msg.err
+ m.loaded |= loadedStash // still done, albeit unsuccessfully
+ m.stashFullyLoaded = true
+ m.loadingFromNetwork = false
+
+ case newsLoadErrMsg:
+ m.err = msg.err
+ m.loaded |= loadedNews // still done, albeit unsuccessfully
+
// We're finished searching for local files
case localFileSearchFinished:
m.loaded |= loadedLocalFiles