diff --git a/mopidy/audio/actor.py b/mopidy/audio/actor.py index 0d90394d00..9059cf8962 100644 --- a/mopidy/audio/actor.py +++ b/mopidy/audio/actor.py @@ -320,7 +320,9 @@ def set_uri(self, uri): :param uri: the URI to play :type uri: string """ + current_volume = self.get_volume() self._playbin.set_property('uri', uri) + self.set_volume(current_volume) def set_appsrc( self, caps, need_data=None, enough_data=None, seek_data=None):