banshee r3418 - in branches/banshee/stable: . src/Plugins/Banshee.Plugins.Audioscrobbler
- From: sdroege svn gnome org
- To: svn-commits-list gnome org
- Subject: banshee r3418 - in branches/banshee/stable: . src/Plugins/Banshee.Plugins.Audioscrobbler
- Date: Tue, 11 Mar 2008 11:29:30 +0000 (GMT)
Author: sdroege
Date: Tue Mar 11 11:29:30 2008
New Revision: 3418
URL: http://svn.gnome.org/viewvc/banshee?rev=3418&view=rev
Log:
* src/Plugins/Banshee.Plugins.Audioscrobbler/Engine.cs: And don't show
the last four warnings to the user as well.
Modified:
branches/banshee/stable/ChangeLog
branches/banshee/stable/src/Plugins/Banshee.Plugins.Audioscrobbler/Engine.cs
Modified: branches/banshee/stable/src/Plugins/Banshee.Plugins.Audioscrobbler/Engine.cs
==============================================================================
--- branches/banshee/stable/src/Plugins/Banshee.Plugins.Audioscrobbler/Engine.cs (original)
+++ branches/banshee/stable/src/Plugins/Banshee.Plugins.Audioscrobbler/Engine.cs Tue Mar 11 11:29:30 2008
@@ -332,7 +332,7 @@
}
catch (Exception e) {
LogCore.Instance.PushWarning ("Audioscrobbler upload failed",
- String.Format("Failed to get the request stream: {0}", e, false));
+ String.Format("Failed to get the request stream: {0}", e), false);
state = State.IDLE;
next_interval = DateTime.Now + new TimeSpan (0, 0, RETRY_SECONDS);
return;
@@ -363,7 +363,7 @@
}
catch (Exception e) {
LogCore.Instance.PushWarning ("Audioscrobbler upload failed",
- String.Format("Failed to get the response: {0}", e, false));
+ String.Format("Failed to get the response: {0}", e), false);
state = State.IDLE;
next_interval = DateTime.Now + new TimeSpan (0, 0, RETRY_SECONDS);
return;
@@ -463,7 +463,7 @@
}
catch (Exception e) {
LogCore.Instance.PushWarning ("Audioscrobbler init failed",
- String.Format("Failed to handshake: {0}", e, false));
+ String.Format("Failed to handshake: {0}", e), false);
/* back off for a time before trying again */
state = State.IDLE;
@@ -583,7 +583,7 @@
}
catch (Exception e) {
LogCore.Instance.PushWarning ("Audioscrobbler NowPlaying failed",
- String.Format("Failed to post NowPlaying: {0}", e, false));
+ String.Format("Failed to post NowPlaying: {0}", e), false);
}
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]