Remove 60 cap

This commit is contained in:
Daniel Mason 2021-10-09 15:02:09 +13:00
parent 803fc11664
commit 7dc6e0eb74
Signed by: idanoo
GPG key ID: 387387CDBC02F132

View file

@ -68,11 +68,6 @@ func parseCsvRow(data string) {
// Append row data // Append row data
updatedLocations.Locations = append(updatedLocations.Locations, newRow) updatedLocations.Locations = append(updatedLocations.Locations, newRow)
} }
if len(updatedLocations.Locations) > 60 {
log.Print("Not displaying > 60 locations!")
updatedLocations = UpdatedLocations{}
}
} }
// rowHasChanged - Determine if row has actually changed based on raw data // rowHasChanged - Determine if row has actually changed based on raw data