aboutsummaryrefslogtreecommitdiff
path: root/hotline/transaction_handlers.go
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2022-06-25 20:51:16 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2022-06-25 20:51:16 -0700
commitb8c0a83a87eb108e8dfe02fd08c234087f166f04 (patch)
treecb8285cab4a7aeaf2da662804e4a2a945b4d0ff0 /hotline/transaction_handlers.go
parent264b7c27c7a46e2d0eb699812c8e38cf771fcf00 (diff)
Add config option to specify ignored filename patterns
Diffstat (limited to 'hotline/transaction_handlers.go')
-rw-r--r--hotline/transaction_handlers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/transaction_handlers.go b/hotline/transaction_handlers.go
index 2a81768..412868c 100644
--- a/hotline/transaction_handlers.go
+++ b/hotline/transaction_handlers.go
@@ -1668,7 +1668,7 @@ func HandleGetFileNameList(cc *ClientConn, t *Transaction) (res []Transaction, e
return res, err
}
- fileNames, err := getFileNameList(fullPath)
+ fileNames, err := getFileNameList(fullPath, cc.Server.Config.IgnoreFiles)
if err != nil {
return res, err
}