From: David ‘Bombe’ Roden Date: Mon, 3 Jan 2011 06:18:45 +0000 (+0100) Subject: Store the updated Identity in the Sone. X-Git-Tag: 0.4^2~8^2~22 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=5c658688d44f4f087f7a9367a19b94305fbb369a Store the updated Identity in the Sone. --- diff --git a/src/main/java/net/pterodactylus/sone/core/Core.java b/src/main/java/net/pterodactylus/sone/core/Core.java index 7565ca4..763b024 100644 --- a/src/main/java/net/pterodactylus/sone/core/Core.java +++ b/src/main/java/net/pterodactylus/sone/core/Core.java @@ -1742,6 +1742,7 @@ public class Core implements IdentityListener { @SuppressWarnings("synthetic-access") public void run() { Sone sone = getRemoteSone(identity.getId()); + sone.setIdentity(identity); soneDownloader.fetchSone(sone); } }).start();