api core: fix cors env variable (#358)

This commit is contained in:
wukko 2024-02-16 08:42:34 +06:00 committed by GitHub
commit e6e9f4f099
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{
"name": "cobalt",
"description": "save what you love",
"version": "7.10.2",
"version": "7.10.3",
"author": "wukko",
"exports": "./src/cobalt.js",
"type": "module",

View file

@ -15,7 +15,7 @@ import { verifyStream } from "../modules/stream/manage.js";
export function runAPI(express, app, gitCommit, gitBranch, __dirname) {
const corsConfig = process.env.cors === '0' ? {
origin: process.env.webURL,
origin: process.env.CORS_URL,
optionsSuccessStatus: 200
} : {};