From b244c9cc3198d6b9a68a8347bdf5127d5365c033 Mon Sep 17 00:00:00 2001 From: Victor Login Date: Wed, 27 Nov 2019 19:30:42 +0300 Subject: [PATCH] Fix index helpers --- helpers/helpers.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helpers/helpers.go b/helpers/helpers.go index 0a96728..b1c6d1c 100644 --- a/helpers/helpers.go +++ b/helpers/helpers.go @@ -94,15 +94,15 @@ var ProtoHelpersFuncMap = template.FuncMap{ "trimstr": func(cutset, s string) string { return strings.Trim(s, cutset) }, - "index": func(array interface{}, i int32) interface{} { + "index": func(array interface{}, i int) interface{} { slice := reflect.ValueOf(array) if slice.Kind() != reflect.Slice { panic("Error in index(): given a non-slice type") } - if i < 0 || int(i) >= slice.Len() { + if i < 0 || i >= slice.Len() { panic("Error in index(): index out of bounds") } - return slice.Index(int(i)).Interface() + return slice.Index(i).Interface() }, "add": func(a int, b int) int { return a + b