diff options
Diffstat (limited to 'server.ts')
-rw-r--r-- | server.ts | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -134,7 +134,7 @@ import { HttpStatusCode } from './shared/models/http/http-error-codes' | |||
134 | import { VideosTorrentCache } from '@server/lib/files-cache/videos-torrent-cache' | 134 | import { VideosTorrentCache } from '@server/lib/files-cache/videos-torrent-cache' |
135 | import { ServerConfigManager } from '@server/lib/server-config-manager' | 135 | import { ServerConfigManager } from '@server/lib/server-config-manager' |
136 | import { VideoViewsManager } from '@server/lib/views/video-views-manager' | 136 | import { VideoViewsManager } from '@server/lib/views/video-views-manager' |
137 | import { isTestInstance } from './server/helpers/core-utils' | 137 | import { isTestOrDevInstance } from './server/helpers/core-utils' |
138 | import { OpenTelemetryMetrics } from '@server/lib/opentelemetry/metrics' | 138 | import { OpenTelemetryMetrics } from '@server/lib/opentelemetry/metrics' |
139 | 139 | ||
140 | // ----------- Command line ----------- | 140 | // ----------- Command line ----------- |
@@ -148,7 +148,7 @@ cli | |||
148 | // ----------- App ----------- | 148 | // ----------- App ----------- |
149 | 149 | ||
150 | // Enable CORS for develop | 150 | // Enable CORS for develop |
151 | if (isTestInstance()) { | 151 | if (isTestOrDevInstance()) { |
152 | app.use(cors({ | 152 | app.use(cors({ |
153 | origin: '*', | 153 | origin: '*', |
154 | exposedHeaders: 'Retry-After', | 154 | exposedHeaders: 'Retry-After', |