another bugfix in new url class

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2318 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent 685430a1b5
commit e20ff77c10

@ -64,8 +64,8 @@ public class URL {
if ((r = host.indexOf('@')) < 0) {
userInfo = null;
} else {
userInfo = host.substring(r + 1);
host = host.substring(0, r);
userInfo = host.substring(0, r);
host = host.substring(r + 1);
}
path = url.substring(q);
}

Loading…
Cancel
Save