Fix remote edit issue

This commit is contained in:
Tim Bentley 2010-10-06 21:24:53 +01:00
parent 16b4aa0715
commit c262d9ad75
1 changed files with 2 additions and 1 deletions

View File

@ -200,7 +200,8 @@ class SongMediaItem(MediaManagerItem):
if self.remoteTriggered == u'P':
self.onPreviewClick()
# Push edits to the service manager to update items
if self.editItem and self.updateServiceOnEdit:
if self.editItem and self.updateServiceOnEdit and \
not self.remoteTriggered:
item = self.buildServiceItem(self.editItem)
self.parent.serviceManager.replaceServiceItem(item)
self.onRemoteEditClear()