From: David ‘Bombe’ Roden Date: Wed, 13 Oct 2010 19:27:39 +0000 (+0200) Subject: Set modification counter of new Sones to 1 so that it is inserted automatically. X-Git-Tag: 0.1-RC1~453 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=351ac6b0a5da732e79495cc1643295b4d6a4f233 Set modification counter of new Sones to 1 so that it is inserted automatically. --- diff --git a/src/main/java/net/pterodactylus/sone/core/Core.java b/src/main/java/net/pterodactylus/sone/core/Core.java index ddd3524..e59c8e6 100644 --- a/src/main/java/net/pterodactylus/sone/core/Core.java +++ b/src/main/java/net/pterodactylus/sone/core/Core.java @@ -170,6 +170,8 @@ public class Core extends AbstractService { try { logger.log(Level.FINEST, "Creating new Sone “%s” at %s (%s)…", new Object[] { name, finalRequestUri, finalInsertUri }); sone = new Sone(UUID.randomUUID(), name, new FreenetURI(finalRequestUri), new FreenetURI(finalInsertUri)); + /* set modification counter to 1 so it is inserted immediately. */ + sone.setModificationCounter(1); addSone(sone); } catch (MalformedURLException mue1) { throw new SoneException(Type.INVALID_URI);