瀏覽代碼

Fixup Api Common [Server Side] [Console Log]

- [+] fix(common.ts): fix condition to check if serverConfig.openaiOrgId is not undefined
H0llyW00dzZ 1 年之前
父節點
當前提交
f9d916925e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/api/common.ts

+ 1 - 1
app/api/common.ts

@@ -31,7 +31,7 @@ export async function requestOpenai(req: NextRequest) {
   console.log("[Proxy] ", path);
   console.log("[Base Url]", baseUrl);
   // this fix [Org ID] undefined in server side if not using custom point
-  if (serverConfig.openaiOrgId) {
+  if (serverConfig.openaiOrgId !== undefined) {
     console.log("[Org ID]", serverConfig.openaiOrgId);
   }