Skip to content

Commit

Permalink
Merge pull request #24 from Aytackydln/master
Browse files Browse the repository at this point in the history
change Logitech pipe name number from decimal to hexadecimal
  • Loading branch information
diogotr7 authored Jan 1, 2024
2 parents 3ce5cef + 774086e commit 47b0ac1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public LogitechPipeListenerService(ILogger logger, Plugin plugin)
_excluded = new();

var id = WTSGetActiveConsoleSessionId();
var pipeName = $"LGS_LED_SDK-{id:00000000}";
var pipeName = "LGS_LED_SDK-" + id.ToString("x8");
_pipeListener = new(pipeName);
_pipeListener.ClientConnected += OnPipeListenerClientConnected;
_pipeListener.ClientDisconnected += OnPipeListenerClientDisconnected;
Expand Down

0 comments on commit 47b0ac1

Please sign in to comment.