fix: #1233 detect api key with custom prefix

This commit is contained in:
Yidadaa
2023-05-04 22:50:07 +08:00
parent 596c9b1d27
commit c2e79d22d2
3 changed files with 9 additions and 3 deletions

View File

@@ -8,6 +8,7 @@ import {
useChatStore,
} from "./store";
import { showToast } from "./components/ui-lib";
import { ACCESS_CODE_PREFIX } from "./constant";
const TIME_OUT_MS = 60000;
@@ -58,7 +59,9 @@ function getHeaders() {
accessStore.enabledAccessControl() &&
validString(accessStore.accessCode)
) {
headers.Authorization = makeBearer(accessStore.accessCode);
headers.Authorization = makeBearer(
ACCESS_CODE_PREFIX + accessStore.accessCode,
);
}
return headers;