From f3850a6e2f2c230dde0d7bf21a9d8eb1c37be426 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Mon, 24 Nov 2025 23:27:52 +0800 Subject: [PATCH] fix: wrong file_hash get --- client-protocol/LingChairClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-protocol/LingChairClient.ts b/client-protocol/LingChairClient.ts index 19dcad5..063ec8d 100644 --- a/client-protocol/LingChairClient.ts +++ b/client-protocol/LingChairClient.ts @@ -228,6 +228,6 @@ export default class LingChairClient { } : json), code: re.status, } as ApiCallbackMessage) - return json.data.hash as string + return json.data.file_hash as string } }