From 3670cafaacc821a2606f0a7bfc510c5e899fe824 Mon Sep 17 00:00:00 2001 From: Hamcha Date: Mon, 17 Sep 2018 15:32:31 +0200 Subject: [PATCH] Increase timeout --- scryfall.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scryfall.go b/scryfall.go index 19d30ca..7c12cab 100644 --- a/scryfall.go +++ b/scryfall.go @@ -51,7 +51,7 @@ type CardData struct { } var netClient = &http.Client{ - Timeout: time.Second * 10, + Timeout: time.Second * 20, } func scryfallSearch(query string, offset int) (results CardSearchResults, err error) {