GNOME Bugzilla – Bug 726776
Incorrect uri parameter in Soup message in handle_playlist function
Last modified: 2014-03-20 19:07:29 UTC
During playlist handling, there is an assert (or more troubles) due to unset uri string in the soup message, as controller.uri is set after the Soup.Message creation: Rygel-av-transport.vala:697 private async void handle_playlist (ServiceAction action, string uri, string metadata, string mime, string features) { var message = new Message ("GET", this.controller.uri); It should be: var message = new Message ("GET", uri); Rebuild librygel-renderer with this change, and playlists seem to work fine.
Created attachment 272515 [details] [review] renderer: Fix URI handling Signed-off-by: Jens Georg <mail@jensge.org>
Attachment 272515 [details] pushed as a00b362 - renderer: Fix URI handling