Update Stream.view to disable currently playing update
The audio player I am writing achieves gapless playback by pre-fetching the next song so it can be fed into the audio buffer as soon as required. However stream.view immediately tells the web interface that the user is playing that song as current, which isn't true. Adding a boolean to the stream.view call to disable this function would be a preferable and easy solution. Additionally, adding a new REST call to set the currently playing item index would allow my player to specify this as it determines appropriate.