--- banshee-1.4.3/src/Extensions/Banshee.NotificationArea/Banshee.NotificationArea/NotificationAreaService.cs 2009-01-23 20:28:34.000000000 +0100 +++ banshee-1.4.3.new/src/Extensions/Banshee.NotificationArea/Banshee.NotificationArea/NotificationAreaService.cs 2009-04-20 17:07:04.510786161 +0200 @@ -386,7 +386,10 @@ Gdk.Pixbuf image = null; if (artwork_manager_service != null) { - image = artwork_manager_service.LookupScalePixbuf (current_track.ArtworkId, 42); + if (Notifications.Global.ServerInformation.Name == "notification-daemon") + image = artwork_manager_service.LookupScalePixbuf (current_track.ArtworkId, 42); + else + image = artwork_manager_service.LookupPixbuf (current_track.ArtworkId); } if (image == null) {