diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2023-03-26 21:10:03 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2023-03-26 21:10:03 -0700 |
| commit | d005ef04cfaa26943e6dd33807d741577ffb232a (patch) | |
| tree | 26b5e4a945889dde0597f615cee31957efb32fa5 /hotline/files.go | |
| parent | c3c2f61b2fd90ab5c7fe6ec769644e9d66d40361 (diff) | |
Initial refactor to split client from protocol package
Diffstat (limited to 'hotline/files.go')
| -rw-r--r-- | hotline/files.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/files.go b/hotline/files.go index aa248f8..c4ba718 100644 --- a/hotline/files.go +++ b/hotline/files.go @@ -131,7 +131,7 @@ func getFileNameList(path string, ignoreList []string) (fields []Field, err erro if err != nil { return nil, err } - fields = append(fields, NewField(fieldFileNameWithInfo, b)) + fields = append(fields, NewField(FieldFileNameWithInfo, b)) } return fields, nil |