From: Jaroslav Kysela Date: Tue, 11 Dec 2018 13:43:18 +0000 (+0100) Subject: http server: remove wrong aa_auth check from page_srvid2, fixes #5416 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3d57ee05ce55584545334cb44f7a5f0a3d2bfd9;p=thirdparty%2Ftvheadend.git http server: remove wrong aa_auth check from page_srvid2, fixes #5416 --- diff --git a/src/webui/webui.c b/src/webui/webui.c index 360216cce..3e46221e7 100644 --- a/src/webui/webui.c +++ b/src/webui/webui.c @@ -1637,8 +1637,6 @@ page_srvid2(http_connection_t *hc, const char *remain, void *opaque) int first; char buf1[16], buf2[16], buf3[16]; - if (hc->hc_access == NULL || strempty(hc->hc_access->aa_auth)) - return http_noaccess_code(hc); tvh_mutex_lock(&global_lock); TAILQ_FOREACH(t, &service_all, s_all_link) { if (!idnode_is_instance(&t->s_id, &mpegts_service_class))