From ccf6054d49001f341c09eaad9c10d9f2c1f3c257 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Fri, 4 Nov 2022 10:05:00 -0600 Subject: [PATCH] Increase timout to 20 seconds --- plugins/songwhip.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/songwhip.go b/plugins/songwhip.go index c0fc2f4..cdc9032 100644 --- a/plugins/songwhip.go +++ b/plugins/songwhip.go @@ -97,7 +97,7 @@ func (s *Songwhip) Process(from, post string) string { var swresp = &SongwhipResp{} var req = HTTPRequest{ - Timeout: 5 * time.Second, + Timeout: 20 * time.Second, URL: "https://songwhip.com/", Method: "POST", ResBody: swresp,