auth removed from open in player

This commit is contained in:
Radek Davidek 2026-03-10 16:20:00 +01:00
parent dccd95e1f2
commit acde8364fa

View File

@ -430,9 +430,6 @@ public final class XtreamPlayerApplication {
private record OpenInPlayerHandler(ConfigStore configStore, UserAuthenticator userAuthenticator) implements HttpHandler {
@Override
public void handle(HttpExchange exchange) throws IOException {
if (!requireAuth(exchange, userAuthenticator)) {
return;
}
Map<String, String> query = parseKeyValue(exchange.getRequestURI().getRawQuery());
logApiRequest(exchange, "/api/open-in-player", query);
if (!"GET".equalsIgnoreCase(exchange.getRequestMethod())) {