fixes lol
All checks were successful
Build and Push / build-all (push) Successful in 23s

This commit is contained in:
doomtube 2026-01-08 21:24:01 -05:00
parent 83ab76c7d3
commit 03e213df98

View file

@ -996,7 +996,11 @@ http {
local redis_helper = require "redis_helper"
-- Get viewer token from query parameter or cookie
-- Note: ngx.var.arg_token returns URL-encoded value, must decode it
local token = ngx.var.arg_token
if token then
token = ngx.unescape_uri(token)
end
-- If not in query parameter, try cookie
if not token then