From fd53e94b8443d0fb3a1338ac2d4264540f58e32b Mon Sep 17 00:00:00 2001 From: Aman Chhabra Date: Sat, 15 May 2021 10:08:22 -0700 Subject: [PATCH] API Request Fix --- bgl/bgl.go | 2 +- update.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bgl/bgl.go b/bgl/bgl.go index cef170a..99ca262 100644 --- a/bgl/bgl.go +++ b/bgl/bgl.go @@ -179,7 +179,7 @@ func (b *BGLData) SaveRawOutput(final ResultSubmission) error { } func (b *BGLData) LoadCurrentMatches() error { - url := getAPIUrl() + "matches/?format=json&limit=5&awaiting_results=true" + url := getAPIUrl() + "matches/?format=json&limit=26&awaiting_results=true" method := "GET" client := &http.Client{} diff --git a/update.go b/update.go index d5de171..ac7eb69 100644 --- a/update.go +++ b/update.go @@ -7,7 +7,7 @@ import ( "github.com/rhysd/go-github-selfupdate/selfupdate" ) -const version = "0.1.7" +const version = "0.1.8" func doSelfUpdate() bool { v := semver.MustParse(version)