*) adding missing return prop (requested by allo)

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2532 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 19 years ago
parent f0529fe53e
commit 92e986bb91

@ -71,7 +71,8 @@ public class getpageinfo_p {
if(url.toLowerCase().startsWith("ftp://")){
prop.put("robots-allowed", 1);
prop.put("title", "FTP: "+url);
}else if (!url.toLowerCase().startsWith("http://")) {
return prop;
} else if (!(url.toLowerCase().startsWith("http://") || url.toLowerCase().startsWith("https://"))) {
url = "http://" + url;
}
if (actions.indexOf("title")>=0) {

Loading…
Cancel
Save