removed println from simkl body

This commit is contained in:
John O'Keefe 2025-02-15 18:48:17 -05:00
parent 4509e479bc
commit 61f8f5dd84

View File

@ -262,7 +262,6 @@ func (a *App) SimklSearch(aniListAnime MediaList) SimklAnime {
if len(anime) == 0 {
url = "https://api.simkl.com/search/id?mal=" + strconv.Itoa(aniListAnime.Media.IDMal)
respBody = SimklHelper("GET", url, nil)
fmt.Println(string(respBody))
err = json.Unmarshal(respBody, &anime)
}