From 6828feafac102d63fa430c9baba8f5bd2ef7cf8b Mon Sep 17 00:00:00 2001 From: pancakes-proxy Date: Thu, 22 May 2025 07:53:13 +0900 Subject: [PATCH] fix: Update Arch Linux download link to point to the correct ISO file --- cogs/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/files.py b/cogs/files.py index d836659..1e26bcb 100644 --- a/cogs/files.py +++ b/cogs/files.py @@ -19,7 +19,7 @@ class Download(commands.Cog): async def download_archlinux(self, interaction: discord.Interaction): embed = discord.Embed( title="Download Arch Linux ISO", - description="[Click here to download Arch Linux 2025.05.01 ISO](https://ftpmirror.infania.net/mirror/archlinux/iso/2025.05.01/)", + description="[Click here to download Arch Linux 2025.05.01 ISO](https://ftpmirror.infania.net/mirror/archlinux/iso/2025.05.01/archlinux-2025.05.01-x86_64.iso)", color=discord.Color.green() ) await interaction.response.send_message(embed=embed)