aboutsummaryrefslogtreecommitdiff
path: root/cmd/search.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-07-02 14:41:18 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-07-02 14:41:18 +0530
commit720045d9ea2e612ca0f0b7333ee62a73b2955a15 (patch)
treeb25bfecc256408b7fbef71abc2964d439ca6d3bb /cmd/search.go
parentbeacbdf5974ab4eadc2ab651ed59b7bd2dcc6e02 (diff)
Bug Fix: `macli login` showing error message that user is not logged in
Diffstat (limited to 'cmd/search.go')
-rw-r--r--cmd/search.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/search.go b/cmd/search.go
index 63f451a..969af8f 100644
--- a/cmd/search.go
+++ b/cmd/search.go
@@ -38,6 +38,7 @@ var searchCmd = &cobra.Command {
"\t\x1b[33m`macli search -m <manga-name>`\x1b[0m searches for a manga\n" +
"\t\x1b[33m`macli search`\x1b[0m interactively asks for an anime to search for (same for manga with -m/--manga flag)\n",
Run: func(cmd *cobra.Command, args []string) {
+ mal.Init()
// read searchInput from command
searchInput := strings.Join(args, " ")
mangaMode, err := cmd.Flags().GetBool("manga")