From 7cd2109099980d87ba3f1dc1ac7483080b1da27c Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 6 Dec 2018 16:40:34 +0100 Subject: [PATCH] Use h3 extension from Settings. --- src/de/mas/wiiu/jnus/implementations/NUSDataProviderRemote.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }