Skip to content

Commit 30bf87d

Browse files
committed
fix(cardano-services): disable cors if allowedOrigins is empty array
1 parent ace6760 commit 30bf87d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cardano-services/src/Http/HttpServer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class HttpServer extends RunnableModule {
8686
protected async initializeImpl(): Promise<void> {
8787
this.app = express();
8888

89-
if (this.#config.allowedOrigins) {
89+
if (this.#config.allowedOrigins?.length) {
9090
this.app.use(cors(corsOptions(new Set(this.#config.allowedOrigins))));
9191
}
9292

0 commit comments

Comments
 (0)