Fix compile error. Closes #402

This commit is contained in:
Hylke Bons 2011-11-03 23:28:25 +00:00
parent 439d26f803
commit 26df391130

View file

@ -17,6 +17,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using System.Timers; using System.Timers;
namespace SparkleLib { namespace SparkleLib {
@ -200,6 +201,7 @@ namespace SparkleLib {
SparkleHelpers.DebugInfo ("Listener", "Got message from " + announcement.FolderIdentifier + " on " + this.server); SparkleHelpers.DebugInfo ("Listener", "Got message from " + announcement.FolderIdentifier + " on " + this.server);
this.queue_down.Add (announcement); this.queue_down.Add (announcement);
this.queue_down = this.queue_down.Distinct ().ToList ();
if (Announcement != null) if (Announcement != null)
Announcement (announcement); Announcement (announcement);