banshee r3426 - in branches/banshee/stable: . src/Plugins/Banshee.Plugins.Audioscrobbler



Author: sdroege
Date: Wed Mar 12 11:51:27 2008
New Revision: 3426
URL: http://svn.gnome.org/viewvc/banshee?rev=3426&view=rev

Log:
* src/Plugins/Banshee.Plugins.Audioscrobbler/Queue.cs: Correctly
convert the timestamps sent to last.fm to UTC (BGO #521750).


Modified:
   branches/banshee/stable/ChangeLog
   branches/banshee/stable/src/Plugins/Banshee.Plugins.Audioscrobbler/Queue.cs

Modified: branches/banshee/stable/src/Plugins/Banshee.Plugins.Audioscrobbler/Queue.cs
==============================================================================
--- branches/banshee/stable/src/Plugins/Banshee.Plugins.Audioscrobbler/Queue.cs	(original)
+++ branches/banshee/stable/src/Plugins/Banshee.Plugins.Audioscrobbler/Queue.cs	Wed Mar 12 11:51:27 2008
@@ -52,7 +52,7 @@
                 this.title = track.Title;
                 this.track_number = (int) track.TrackNumber;
                 this.duration = (int) track.Duration.TotalSeconds;
-                this.start_time = DateTimeUtil.ToTimeT(start_time.ToUniversalTime ());
+                this.start_time = DateTimeUtil.ToTimeT(start_time);
             }
 
             public QueuedTrack (string artist, string album,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]