From b8c0a83a87eb108e8dfe02fd08c234087f166f04 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Sat, 25 Jun 2022 20:51:16 -0700 Subject: Add config option to specify ignored filename patterns --- hotline/transaction_handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hotline/transaction_handlers.go') 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 } -- cgit