From 54e0c06e96f7de699ae401b6b62a6fe6c2cddfa6 Mon Sep 17 00:00:00 2001 From: salfab Date: Thu, 12 Mar 2015 19:44:54 +0100 Subject: [PATCH] note for improvement - bugfix :) --- SpotifyAPI/SpoitfyLocalAPI/RemoteHandler.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SpotifyAPI/SpoitfyLocalAPI/RemoteHandler.cs b/SpotifyAPI/SpoitfyLocalAPI/RemoteHandler.cs index 18564b5e..7bb742d7 100644 --- a/SpotifyAPI/SpoitfyLocalAPI/RemoteHandler.cs +++ b/SpotifyAPI/SpoitfyLocalAPI/RemoteHandler.cs @@ -61,6 +61,7 @@ namespace SpotifyAPI.SpotifyLocalAPI internal async void SendPlayRequest(String url, String context = "") { + // TODO: instead of having an empty context, one way to fix the bug with the playback time beyond the length of a song would be to provide a 1-song context, and it would be fixed. await QueryAsync(string.Format("remote/play.json?uri={0}&context={1}", url, context), true, true, -1); }