From: David ‘Bombe’ Roden Date: Thu, 14 Oct 2010 19:19:03 +0000 (+0200) Subject: Terminate the list of Sones as well. X-Git-Tag: 0.1-RC1~355 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=c7cc97d320bc10afb3a183ad890f1a3060a4f648 Terminate the list of Sones as well. --- diff --git a/src/main/java/net/pterodactylus/sone/core/Core.java b/src/main/java/net/pterodactylus/sone/core/Core.java index b38aac6..2b0c0bf 100644 --- a/src/main/java/net/pterodactylus/sone/core/Core.java +++ b/src/main/java/net/pterodactylus/sone/core/Core.java @@ -368,8 +368,10 @@ public class Core extends AbstractService { } /* write null ID as terminator. */ configuration.getStringValue(sonePrefix + "/Reply." + replyId + "/ID").setValue(null); - } + /* write null ID as terminator. */ + configuration.getStringValue("Sone/Sone." + soneId + "/ID").setValue(null); + } catch (ConfigurationException ce1) { logger.log(Level.WARNING, "Could not store configuration!", ce1); }