From 90d9abc19306f2bffcb4acf96318d44b00ce81c1 Mon Sep 17 00:00:00 2001 From: kira1928 Date: Tue, 18 Jun 2024 01:28:43 +0900 Subject: [PATCH] fix invalid file name --- src/pkg/utils/functions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/utils/functions.go b/src/pkg/utils/functions.go index c194b86f..1da2e5c7 100644 --- a/src/pkg/utils/functions.go +++ b/src/pkg/utils/functions.go @@ -9,8 +9,8 @@ import ( func getFunctionList(config *configs.Config) map[string]interface{} { filenameFilters := []StringFilter{ - ReplaceIllegalChar, UnescapeHTMLEntity, + ReplaceIllegalChar, } if config.Feature.RemoveSymbolOtherCharacter { filenameFilters = append(filenameFilters, RemoveSymbolOtherChar)