From 5a853569e63e3dd98bc4c25d51926d4268f024a0 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 19 Dec 2025 19:16:57 +0100 Subject: [PATCH] fix: Fedora 43 not being updatable --- main/updater/source/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/updater/source/main.cpp b/main/updater/source/main.cpp index 4b3b495e3..4bfe5492b 100644 --- a/main/updater/source/main.cpp +++ b/main/updater/source/main.cpp @@ -134,6 +134,8 @@ std::string_view getUpdateArtifactEnding() { return ARCH_DEPENDENT("Fedora-41-x86_64.rpm", ""); else if (hex::executeCommand("grep -q 'VERSION_ID=\"42\"' /etc/os-release") == 0) return ARCH_DEPENDENT("Fedora-42-x86_64.rpm", ""); + else if (hex::executeCommand("grep -q 'VERSION_ID=\"43\"' /etc/os-release") == 0) + return ARCH_DEPENDENT("Fedora-43-x86_64.rpm", ""); else if (hex::executeCommand("grep -q 'VERSION_ID=\"rawhide\"' /etc/os-release") == 0) return ARCH_DEPENDENT("Fedora-rawhide-x86_64.rpm", ""); } else if (hex::executeCommand("grep -q '^NAME=\"Arch Linux\"' /etc/os-release") == 0) {