Skip to content

Commit e5e57c3

Browse files
author
mrnikbobjeff
committed
Removed infinite loop in dispose call
Imporved spelling in new commits
1 parent 4f83ac0 commit e5e57c3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

SpotifyAPI/Local/SpotifyLocalAPI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public void UnMute()
199199
/// <summary>
200200
/// Sets the Volume Mixer volume (requires Windows 7 or newer)
201201
/// </summary>
202-
/// <param name="volume">A Value between 0 and 100</param>
202+
/// <param name="volume">A value between 0 and 100</param>
203203
public void SetSpotifyVolume(float volume = 100)
204204
{
205205
Contract.Requires(0 <= volume && volume <= 100);

SpotifyAPI/Web/SimpleHttpServer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ public void Dispose()
203203
{
204204
IsActive = false;
205205
_listener.Stop();
206-
Dispose();
207206
GC.SuppressFinalize(this);
208207
}
209208

0 commit comments

Comments
 (0)