From be219d27bcb4b8e38d0674329a9f15a799dc0e7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B4=87=E5=B3=B0=20=E6=9C=94=E8=8F=AF?= Date: Fri, 22 Nov 2024 19:06:14 +0900 Subject: [PATCH] fix --- packages/backend/src/core/ProxyAccountService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/backend/src/core/ProxyAccountService.ts b/packages/backend/src/core/ProxyAccountService.ts index f776d72405..236efd53fd 100644 --- a/packages/backend/src/core/ProxyAccountService.ts +++ b/packages/backend/src/core/ProxyAccountService.ts @@ -34,6 +34,7 @@ export class ProxyAccountService { @bindThis public async fetch(): Promise { + if (this.meta.proxyAccountId == null) return null; const cached = this.cache.get(); if (cached) return cached;