From: David ‘Bombe’ Roden Date: Tue, 21 Dec 2010 11:08:35 +0000 (+0100) Subject: Stop the Sone downloader and unregister all USKs when stopping the core. X-Git-Tag: beta-freefall-0.6.2-1~177 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=f0b7680701ca1cbcf4b80e49690d9c2d1b2720de Stop the Sone downloader and unregister all USKs when stopping the core. --- diff --git a/src/main/java/net/pterodactylus/sone/core/Core.java b/src/main/java/net/pterodactylus/sone/core/Core.java index 2ef2d57..0c3d8ff 100644 --- a/src/main/java/net/pterodactylus/sone/core/Core.java +++ b/src/main/java/net/pterodactylus/sone/core/Core.java @@ -1406,6 +1406,7 @@ public class Core implements IdentityListener { soneInserter.stop(); } } + soneDownloader.stop(); saveConfiguration(); stopped = true; }