From c11ae50f05fbf8cc028225ea5dbf0dd6766522c4 Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Mon, 13 Oct 2025 21:44:29 +0200 Subject: [PATCH] update module fixed lol --- Modules/Updates.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Updates.qml b/Modules/Updates.qml index 1d904a3..c10cecc 100644 --- a/Modules/Updates.qml +++ b/Modules/Updates.qml @@ -28,7 +28,7 @@ Singleton { stdout: StdioCollector { onStreamFinished: { const output = this.text - const lines = output.trim().split("\n") + const lines = output.trim().split("\n").filter(line => line.length > 0) console.log("Available updates:", lines) availableUpdates = lines.length }