From 7bc11120b9f0a8686cc18b9f151399b63b417b4e Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Tue, 24 Jan 2023 11:59:00 +0800 Subject: [PATCH] fix(remote_judger/uoj): account type --- remote_judger/src/providers/uoj.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote_judger/src/providers/uoj.ts b/remote_judger/src/providers/uoj.ts index b6c0720..673a439 100644 --- a/remote_judger/src/providers/uoj.ts +++ b/remote_judger/src/providers/uoj.ts @@ -83,7 +83,7 @@ export function getAccountInfoFromEnv(): RemoteAccount | null { if (!UOJ_HANDLE || !UOJ_PASSWORD) return null; const account: RemoteAccount = { - type: 'codeforces', + type: 'uoj', handle: UOJ_HANDLE, password: UOJ_PASSWORD, endpoint: UOJ_ENDPOINT,