diff --git a/homeassistant/components/discord/notify.py b/homeassistant/components/discord/notify.py index dfc89a4cb7e..6d3dc704d83 100644 --- a/homeassistant/components/discord/notify.py +++ b/homeassistant/components/discord/notify.py @@ -112,7 +112,6 @@ class DiscordNotificationService(BaseNotificationService): await channel.send(message, files=files) except (discord.errors.HTTPException, discord.errors.NotFound) as error: _LOGGER.warning("Communication error: %s", error) - await discord_bot.logout() await discord_bot.close() # Using reconnect=False prevents multiple ready events to be fired.