From: David ‘Bombe’ Roden Date: Mon, 18 Apr 2011 18:35:22 +0000 (+0200) Subject: Download a Sone as USK when it’s the first time. X-Git-Tag: 0.6.3^2~20 X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=3051dd21c82e479d0e03daa92b588faac2337048 Download a Sone as USK when it’s the first time. --- diff --git a/src/main/java/net/pterodactylus/sone/core/Core.java b/src/main/java/net/pterodactylus/sone/core/Core.java index fcbc889..eaae0b6 100644 --- a/src/main/java/net/pterodactylus/sone/core/Core.java +++ b/src/main/java/net/pterodactylus/sone/core/Core.java @@ -922,7 +922,7 @@ public class Core implements IdentityListener, UpdateListener { @Override @SuppressWarnings("synthetic-access") public void run() { - soneDownloader.fetchSone(sone); + soneDownloader.fetchSone(sone, sone.getRequestUri()); } }, "Sone Downloader").start();