From f7532f5076d4f79148759ed2f2328b8606f6acdc Mon Sep 17 00:00:00 2001 From: Andrew Glaze Date: Sun, 1 Dec 2024 21:08:59 -0500 Subject: [PATCH] fix input downloader --- app/src/test/kotlin/util/InputDownloader.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/test/kotlin/util/InputDownloader.kt b/app/src/test/kotlin/util/InputDownloader.kt index e2cc386..09fd72d 100644 --- a/app/src/test/kotlin/util/InputDownloader.kt +++ b/app/src/test/kotlin/util/InputDownloader.kt @@ -35,7 +35,7 @@ class InputDownloader { if (res.statusCode() == 403) { throw ConnectException("Failed to download input for day $day. Is your session token correct?") } - if (res.statusCode() != ) { + if (res.statusCode() != 200) { throw ConnectException("Failed to download input for day $day. Is the day open yet?") }