diff --git a/internal/op-client/checksum.go b/internal/op-client/checksum.go index f21e70f..7ff9a40 100644 --- a/internal/op-client/checksum.go +++ b/internal/op-client/checksum.go @@ -21,12 +21,12 @@ func Checksum(fields []*op.ItemField) string { } label := field.Label if field.Section != nil { - sectionId := field.Section.Label - if sectionId == "" { - sectionId = field.Section.ID + sectionID := field.Section.Label + if sectionID == "" { + sectionID = field.Section.ID } - if sectionId != "" { - label = sectionId + "." + label + if sectionID != "" { + label = sectionID + "." + label } } df = append(df, label+field.Value)