Skip to content

Commit

Permalink
Fix bug in NamedPipeServerStream
Browse files Browse the repository at this point in the history
  • Loading branch information
hbl917070 committed Oct 17, 2024
1 parent e924ef1 commit 0e3ed21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tiefsee/StartWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ private async void InitNamedPipeServer() {
await Task.Factory.StartNew(async () => {

using var server = new NamedPipeServerStream(
$"tiefsee-{Program.startPort}",
$"tiefsee-{Program.webServer.port}",
PipeDirection.InOut,
NamedPipeServerStream.MaxAllowedServerInstances,
PipeTransmissionMode.Message);
Expand Down

0 comments on commit 0e3ed21

Please sign in to comment.