fix issue 1233

This commit is contained in:
sanderd17 2012-08-07 11:23:30 +03:00
parent eecdf92f9e
commit b140cd3616

View file

@ -47,6 +47,9 @@ public class Amenity extends MapObject {
this.site = entity.getTag(OSMTagKey.CONTACT_WEBSITE);
}
}
if (this.site.indexOf("://") == -1){
this.site = "http://"+this.site;
}
}
this.description = entity.getTag(OSMTagKey.DESCRIPTION);
}