From 26dc684851992cbcb87760d0c5a98adb494b2f74 Mon Sep 17 00:00:00 2001 From: Interitio Date: Sat, 1 Nov 2025 11:53:42 +1000 Subject: [PATCH] Fix typo in link --- hyperfocus/twitch/component.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hyperfocus/twitch/component.py b/hyperfocus/twitch/component.py index 423cb49..d058b20 100644 --- a/hyperfocus/twitch/component.py +++ b/hyperfocus/twitch/component.py @@ -242,5 +242,7 @@ class FocusComponent(cmds.Component): @cmds.is_moderator() async def focuslist_cmd(self, ctx): comm = await self.bot.profiles.fetch_community(ctx.broadcaster, touch=True) - link = f"https://croccyfocus.thewisewolf.dev/widget/?community={comm}" + link = ( + f"https://croccyfocus.thewisewolf.dev/widget/?community={comm.communityid}" + ) await ctx.reply(f"Browser source link for your channel's hyperfocus: {link}")