fix: Remove authSecret reference from worker config

The authSecret variable was removed but still referenced in the config
object, causing the worker to crash on all requests.
This commit is contained in:
2025-12-12 19:18:24 +01:00
parent 1612bd78b7
commit 8d47424a82

View File

@@ -32,7 +32,6 @@ export default {
? env.CORS_ORIGINS.split(',').map(o => o.trim())
: ['*'],
version: env.VERSION || 'unknown',
authSecret,
offerDefaultTtl: env.OFFER_DEFAULT_TTL ? parseInt(env.OFFER_DEFAULT_TTL, 10) : 60000,
offerMaxTtl: env.OFFER_MAX_TTL ? parseInt(env.OFFER_MAX_TTL, 10) : 86400000,
offerMinTtl: env.OFFER_MIN_TTL ? parseInt(env.OFFER_MIN_TTL, 10) : 60000,