api core: fix cors env variable (#358)

This commit is contained in:
wukko
2024-02-16 08:42:34 +06:00
committed by GitHub
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
} : {};