Merge pull request #62 from CVertex/patch-3

Properly dispose http server
This commit is contained in:
Jonas Dellinger 2015-12-16 13:56:18 +01:00
commit 0e8f08b047

View File

@ -111,6 +111,7 @@ namespace SpotifyAPI.Web.Auth
/// </summary>
public void StopHttpServer()
{
_httpServer.Dispose();
_httpServer = null;
}