diff --git a/src/de/mas/wiiu/jnus/implementations/NUSDataProviderRemote.java b/src/de/mas/wiiu/jnus/implementations/NUSDataProviderRemote.java index 75ae187..27485c2 100644 --- a/src/de/mas/wiiu/jnus/implementations/NUSDataProviderRemote.java +++ b/src/de/mas/wiiu/jnus/implementations/NUSDataProviderRemote.java @@ -52,7 +52,7 @@ public class NUSDataProviderRemote extends NUSDataProvider { @Override public byte[] getContentH3Hash(Content content) throws IOException { NUSDownloadService downloadService = NUSDownloadService.getDefaultInstance(); - String url = getRemoteURL(content) + ".h3"; + String url = getRemoteURL(content) + Settings.H3_EXTENTION; return downloadService.downloadToByteArray(url); }