diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2023-03-26 21:11:36 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-26 21:11:36 -0700 |
| commit | 67d1f7231b807771b57c8f0e63dd796a03130eaf (patch) | |
| tree | 26b5e4a945889dde0597f615cee31957efb32fa5 /hotline/files.go | |
| parent | c3c2f61b2fd90ab5c7fe6ec769644e9d66d40361 (diff) | |
| parent | d005ef04cfaa26943e6dd33807d741577ffb232a (diff) | |
Merge pull request #98 from jhalter/library_refactor
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 |