[banshee] [AppleDevice] Change order of IsCompilation property setting
- From: Gabriel Burt <gburt src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [banshee] [AppleDevice] Change order of IsCompilation property setting
- Date: Sat, 14 Aug 2010 19:49:31 +0000 (UTC)
commit 8168d57b4829d611dd54cd41f9b5ad8cd2edbf26
Author: Gabriel Burt <gabriel burt gmail com>
Date: Sat Aug 14 12:42:20 2010 -0700
[AppleDevice] Change order of IsCompilation property setting
Trying to fix bgo#626923
.../AppleDeviceTrackInfo.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/Dap/Banshee.Dap.AppleDevice/Banshee.Dap.AppleDevice/AppleDeviceTrackInfo.cs b/src/Dap/Banshee.Dap.AppleDevice/Banshee.Dap.AppleDevice/AppleDeviceTrackInfo.cs
index 62a8a01..2b797b1 100644
--- a/src/Dap/Banshee.Dap.AppleDevice/Banshee.Dap.AppleDevice/AppleDeviceTrackInfo.cs
+++ b/src/Dap/Banshee.Dap.AppleDevice/Banshee.Dap.AppleDevice/AppleDeviceTrackInfo.cs
@@ -57,6 +57,7 @@ namespace Banshee.Dap.AppleDevice
IpodTrack = ((AppleDeviceTrackInfo)track).IpodTrack;
LoadFromIpodTrack ();
} else {
+ IsCompilation = track.IsCompilation ;
AlbumArtist = track.AlbumArtist;
AlbumTitle = track.AlbumTitle;
ArtistName = track.ArtistName;
@@ -74,7 +75,6 @@ namespace Banshee.Dap.AppleDevice
FileSize = track.FileSize;
Genre = track.Genre;
Grouping = track.Grouping;
- IsCompilation = track.IsCompilation ;
LastPlayed = track.LastPlayed;
LastSkipped = track.LastSkipped;
PlayCount = track.PlayCount;
@@ -109,6 +109,7 @@ namespace Banshee.Dap.AppleDevice
ExternalId = (long) track.DBID;
+ IsCompilation = track.Compilation;
AlbumArtist = track.AlbumArtist;
AlbumTitle = String.IsNullOrEmpty (track.Album) ? null : track.Album;
ArtistName = String.IsNullOrEmpty (track.Artist) ? null : track.Artist;
@@ -124,7 +125,6 @@ namespace Banshee.Dap.AppleDevice
FileSize = track.Size;
Genre = String.IsNullOrEmpty (track.Genre) ? null : track.Genre;
Grouping = track.Grouping;
- IsCompilation = track.Compilation;
LastPlayed = track.TimePlayed;
PlayCount = (int) track.PlayCount;
TrackCount = track.Tracks;
@@ -181,6 +181,7 @@ namespace Banshee.Dap.AppleDevice
}
var track = IpodTrack;
+ track.Compilation = IsCompilation;
track.AlbumArtist = AlbumArtist;
track.Bitrate = BitRate;
track.Samplerate= (ushort)SampleRate;
@@ -193,7 +194,6 @@ namespace Banshee.Dap.AppleDevice
track.TrackLength = (int) Duration.TotalMilliseconds;
track.Size = (int)FileSize;
track.Grouping = Grouping;
- track.Compilation = IsCompilation;
track.TimePlayed = LastPlayed;
track.PlayCount = (uint) PlayCount;
track.Tracks = TrackCount;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]