Fix bug with opening hours

This commit is contained in:
Victor Shcherb 2020-11-12 16:58:30 +01:00
parent cdf6f1df73
commit 9b0a5da07f

View file

@ -134,7 +134,7 @@ public class Amenity extends MapObject {
} }
this.additionalInfo.put(tag, value); this.additionalInfo.put(tag, value);
if (OPENING_HOURS.equals(tag)) { if (OPENING_HOURS.equals(tag)) {
this.openingHours = value; this.openingHours = unzipContent(value);
} }
} }
} }