fetcher: Fix freeze on cancel

This commit is contained in:
Hylke Bons 2012-08-27 13:24:23 +01:00
parent 56c14e91a9
commit 7c7df904bc

View file

@ -248,10 +248,8 @@ namespace SparkleLib {
public void Dispose ()
{
if (this.thread != null) {
if (this.thread != null)
this.thread.Abort ();
this.thread.Join ();
}
}