diff options
Diffstat (limited to 'cell.go')
-rw-r--r-- | cell.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -532,6 +532,10 @@ func checkCellInArea(cell, area string) bool { area = strings.ToUpper(area) ref := strings.Split(area, ":") + if len(ref) < 2 { + return false + } + from := ref[0] to := ref[1] |