diff --git a/juniorguru/sync/intro.py b/juniorguru/sync/intro.py index 8c95cf48b9c..248bb615121 100644 --- a/juniorguru/sync/intro.py +++ b/juniorguru/sync/intro.py @@ -39,7 +39,7 @@ logger = loggers.get(__name__) -@sync_task(club_content_task) +@sync_task() # club_content_task def main(): run_discord_task('juniorguru.sync.intro.discord_task') @@ -123,7 +123,8 @@ async def welcome(channel, message, moderators): await welcome_discord_message.edit(content=content, suppress=True) except IndexError: logger_m.debug("Sending welcome message") - await thread.send(content=content, suppress=True) + welcome_discord_message = await thread.send(content=content) + await welcome_discord_message.edit(suppress=True) logger_m.debug("Analyzing if all moderators are involved") thread_members_ids = [member.id for member in (thread.members or await thread.fetch_members())] diff --git a/juniorguru/sync/li_group.py b/juniorguru/sync/li_group.py index 96aef4112a9..195da3c97f8 100644 --- a/juniorguru/sync/li_group.py +++ b/juniorguru/sync/li_group.py @@ -27,7 +27,7 @@ async def discord_task(client): logger.info('Last message is more than one month old!') if DISCORD_MUTATIONS_ENABLED: channel = await client.fetch_channel(LI_GROUP_CHANNEL) - await channel.send(content=( + message = await channel.send(content=( "<:linkedin:915267970752712734> Nezapomeň, že můžeš svou LinkedIn síť rozšířit o členy klubu. " "Přidej se do naší skupiny , " "díky které se pak můžeš snadno propojit s ostatními (a oni s tebou). " @@ -36,6 +36,7 @@ async def discord_task(client): "👀 Nevíme, jestli ti logo na profilu přidá nějaký kredit u recruiterů, ale vyloučeno to není! " "Minimálně jako poznávací znamení mezi námi by to zafungovat mohlo. " "Něco jako „Jé, koukám, že ty jsi taky chodila do skauta? Chodíš ještě? Jakou máš přezdívku?“" - ), suppress=True) + )) + await message.edit(suppress=True) else: logger.warning('Discord mutations not enabled')