Skip to content

Commit 07ee15f

Browse files
committed
Merge branch 'master' of github.com:Go-phie/gophie
2 parents 69151d8 + 987c84f commit 07ee15f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cmd/utils.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,15 @@ func ProcessFetchTask(fn fetchFunc) engine.SearchResult {
2323
s.Suffix = " Fetching Data..."
2424
s.Writer = os.Stderr
2525
s.Start()
26-
defer s.Stop()
2726
result = fn()
27+
s.Stop()
2828
} else {
2929
result = fn()
3030
}
31+
if len(result.Movies) <= 0 {
32+
log.Info("No Results Found")
33+
os.Exit(0)
34+
}
3135
return result
3236
}
3337

0 commit comments

Comments
 (0)