Skip to content

Commit 1479ab9

Browse files
committed
Fixed issue with config event
Fixed issue with config event Changed text from steelseries not running exception
1 parent 69d5934 commit 1479ab9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

SteelSeriesAPI/Interfaces/ISonarCommandHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public interface ISonarCommandHandler
8585
void SetStreamRedirectionDevice(string deviceId, Device device = Device.Mic);
8686

8787
/// <summary>
88-
/// Mute or unmute the Redirection of the chosen Sonar <see cref="Channel"/> of the chosen Sonar <see cref="Device"/>
88+
/// Enable or disable the Redirection of the chosen Sonar <see cref="Channel"/> of the chosen Sonar <see cref="Device"/>
8989
/// </summary>
9090
/// <param name="newState">The new state of the Redirection</param>
9191
/// <param name="device">The Sonar <see cref="Device"/> you want to un/mute a Sonar redirection channel</param>

SteelSeriesAPI/Sonar/SonarEventManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ private EventArgs PathResolver(string path)
138138
break;
139139
}
140140
break;
141-
case "config":
141+
case "configs":
142142
if (!(subs.Length < 3))
143143
{
144144
eventArgs = new SonarConfigEvent() { ConfigId = subs[2] };

SteelSeriesAPI/Sonar/SonarRetriever.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public bool[] GetMetaDatas()
4242
{
4343
if (!_ssRetriever.Running)
4444
{
45-
throw new Exception("SteelSeries not running");
45+
throw new Exception("SteelSeries Sonar is not running.");
4646
}
4747

4848
try

0 commit comments

Comments
 (0)