From fcfbf5a01d96374f28f4e25c5c0907d4ba833fbc Mon Sep 17 00:00:00 2001 From: Marcel Baumgartner Date: Sat, 29 Jun 2024 19:03:04 +0200 Subject: [PATCH] Added missing return statement for file check --- Moonlight/Core/Services/MoonlightService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Moonlight/Core/Services/MoonlightService.cs b/Moonlight/Core/Services/MoonlightService.cs index 8bfb2a1d..0a85bdae 100644 --- a/Moonlight/Core/Services/MoonlightService.cs +++ b/Moonlight/Core/Services/MoonlightService.cs @@ -28,6 +28,7 @@ public class MoonlightService BuildName = "N/A"; BuildVersion = "N/A"; IsDockerRun = false; + return; } var line = File.ReadAllText("version");