From ea2c4475dec841f40d2da1f4de11c5b8e98b6a71 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Tue, 24 Sep 2024 18:44:42 -0400 Subject: [PATCH] changed url for simkl to pull all lists, not just watching fixed several simkl bugs --- SimklFunctions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimklFunctions.go b/SimklFunctions.go index ef5009e..d800d2d 100644 --- a/SimklFunctions.go +++ b/SimklFunctions.go @@ -52,7 +52,7 @@ func SimklHelper(method string, url string, body interface{}) json.RawMessage { func (a *App) SimklGetUserWatchlist() SimklWatchListType { method := "GET" - url := "https://api.simkl.com/sync/all-items/anime/watching" + url := "https://api.simkl.com/sync/all-items/anime" respBody := SimklHelper(method, url, nil)