Skip to content

Commit 6c22815

Browse files
committed
Fixed On Master device envents crash
Streamer mode Master would make an error when muting or changing volume because of wrong Rest Api route listening ("Master" instead of "master")
1 parent 7f81b5d commit 6c22815

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

SteelSeriesAPI/Sonar/Enums/Device.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public static string ToDictKey(this Device device, DeviceMapChoice context = Dev
7474
{
7575
foreach (var pair in map)
7676
{
77-
if (pair.Value == jsonKey)
77+
if (pair.Value.ToLower() == jsonKey.ToLower())
7878
{
7979
return pair.Key;
8080
}

SteelSeriesAPI/SteelSeriesAPI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
<TargetFrameworks>net8.0;net9.0;net7.0</TargetFrameworks>
7-
<Version>1.0.1</Version>
7+
<Version>1.0.2</Version>
88
<PackageId>Steelseries-NET-API</PackageId>
99
<Product>Steelseries-NET-API</Product>
1010
<Title>SteelSeries .NET API Client</Title>

0 commit comments

Comments
 (0)