From ce36c433fa6891f5c7c079d7cda53d82f7857dc8 Mon Sep 17 00:00:00 2001 From: James Bayliss Date: Sat, 19 Jun 2021 21:40:53 +0100 Subject: [PATCH] fix(sonarr): error message typo --- sonarr/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonarr/api.go b/sonarr/api.go index 5d9a97c..0bfc91f 100644 --- a/sonarr/api.go +++ b/sonarr/api.go @@ -94,7 +94,7 @@ func (c *Client) getLanguageProfileId(profileName string) (int, error) { } } - return 0, errors.New("language language not found") + return 0, errors.New("language profile not found") } func (c *Client) lookupMediaItem(item *media.Item) (*lookupRequest, error) {