aboutsummaryrefslogtreecommitdiff
path: root/hotline/files.go
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2024-06-08 10:57:27 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2024-06-08 10:58:15 -0700
commit2b7fabb5a1ff6092dd3ea62bd882dd0c02951b81 (patch)
treec9e9382b598d0a6cc3ad85a7246cf31bf560c381 /hotline/files.go
parentb8b0a6c9cb43d52aece4020163b612cfe87de898 (diff)
Ignore files with incompatible names
Diffstat (limited to 'hotline/files.go')
-rw-r--r--hotline/files.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/files.go b/hotline/files.go
index 9357bdb..dcabf9d 100644
--- a/hotline/files.go
+++ b/hotline/files.go
@@ -123,7 +123,7 @@ func getFileNameList(path string, ignoreList []string) (fields []Field, err erro
strippedName := strings.ReplaceAll(file.Name(), ".incomplete", "")
strippedName, err = txtEncoder.String(strippedName)
if err != nil {
- return nil, err
+ continue
}
nameSize := make([]byte, 2)