From f2ec43f2d2bfb94eddccc520d66b5b57c5b2fd84 Mon Sep 17 00:00:00 2001 From: Marcel Baumgartner Date: Mon, 26 Jun 2023 17:19:54 +0200 Subject: [PATCH] Fixed not enabled installing screen for new servers --- Moonlight/App/Services/ServerService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Moonlight/App/Services/ServerService.cs b/Moonlight/App/Services/ServerService.cs index 4ec10443..c10fc333 100644 --- a/Moonlight/App/Services/ServerService.cs +++ b/Moonlight/App/Services/ServerService.cs @@ -285,7 +285,8 @@ public class ServerService Allocations = freeAllocations.ToList(), Backups = new(), OverrideStartup = "", - DockerImageIndex = image.DockerImages.FindIndex(x => x.Default) + DockerImageIndex = image.DockerImages.FindIndex(x => x.Default), + Installing = true }; foreach (var imageVariable in image.Variables)