From d49086f59a2a9d5dfe48fbdc04601e63cf6b7329 Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Mon, 19 Oct 2020 02:53:20 +0000 Subject: [PATCH] Link to channel info on the homepage like irclogger does --- irclog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irclog.py b/irclog.py index 619a581..098d909 100644 --- a/irclog.py +++ b/irclog.py @@ -881,7 +881,7 @@ class WebServer: for path, (channel, auth, hidden, extrasearchpaths, description) in self._paths.items(): if hidden: continue - lines.append(f'{"(PW) " if auth else ""}{html.escape(channel)} (search)') + lines.append(f'{"(PW) " if auth else ""}{html.escape(channel)} (today's log, search)') return aiohttp.web.Response(text = f'IRC logs{"
".join(lines)}', content_type = 'text/html') async def get_channel_info(self, request):