Skip to content

Commit

Permalink
Enque change
Browse files Browse the repository at this point in the history
  • Loading branch information
timheuer committed Mar 24, 2017
1 parent 9724020 commit 5abac06
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Alexa.NET/Request/Type/AudioPlayerRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@ public bool HasEnqueuedItem
{
get
{
if (EnqueuedToken != null && EnqueuedToken != "")
/*if (EnqueuedToken != null && EnqueuedToken != "")
return true;
else
return false;
*/
return !String.IsNullOrEmpty(EnqueuedToken);
}
}

Expand Down

0 comments on commit 5abac06

Please sign in to comment.