diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-07-02 14:41:18 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-07-02 14:41:18 +0530 |
commit | 720045d9ea2e612ca0f0b7333ee62a73b2955a15 (patch) | |
tree | b25bfecc256408b7fbef71abc2964d439ca6d3bb /cmd/user_info.go | |
parent | beacbdf5974ab4eadc2ab651ed59b7bd2dcc6e02 (diff) |
Bug Fix: `macli login` showing error message that user is not logged in
Diffstat (limited to 'cmd/user_info.go')
-rw-r--r-- | cmd/user_info.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/user_info.go b/cmd/user_info.go index 8b6463e..b83af8b 100644 --- a/cmd/user_info.go +++ b/cmd/user_info.go @@ -32,6 +32,7 @@ var userInfoCmd = &cobra.Command { Currently, MyAnimeList doesn't allow reading of other users' profiles. `, Run: func(cmd *cobra.Command, args []string) { + mal.Init() userInfo := mal.GetUserInfo() fmt.Printf("\x1b[1;34mUsername: \x1b[0m%s\n", userInfo.Name) |