Merge pull request #137 from Moonlight-Panel/AddConsoleStreamingDispose

Add console streaming dispose
This commit is contained in:
Marcel Baumgartner 2023-06-01 00:44:56 +02:00 committed by GitHub
commit 88c9f5372d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -311,5 +311,10 @@
{
await Event.Off($"server.{CurrentServer.Uuid}.installComplete", this);
}
if (Console != null)
{
Console.Dispose();
}
}
}