reseed: Fix adding netid param (ticket #2621)

This commit is contained in:
zzz
2019-09-14 11:23:59 +00:00
parent 8d104f7fea
commit 9e39cbe502

View File

@ -341,7 +341,7 @@ public class Reseeder {
if (lc.endsWith(".su3")) {
URI uri;
try {
uri = new URI(_url.toString() + SU3_FILENAME + NETID_PARAM + _context.router().getNetworkID());
uri = new URI(_url.toString() + NETID_PARAM + _context.router().getNetworkID());
} catch (URISyntaxException use) {
throw new IllegalArgumentException("Bad URL " + _url, use);
}