Bump to 60 limit

This commit is contained in:
Daniel Mason 2021-10-04 08:26:59 +13:00
parent 635b4e6c24
commit 87a0cf7158
Signed by: idanoo
GPG key ID: 387387CDBC02F132

View file

@ -64,8 +64,8 @@ func parseCsvRow(data string) {
updatedLocations.Locations = append(updatedLocations.Locations, newRow)
}
if len(updatedLocations.Locations) > 40 {
log.Print("Not displaying > 40 locations!")
if len(updatedLocations.Locations) > 60 {
log.Print("Not displaying > 60 locations!")
updatedLocations = UpdatedLocations{}
}
}