From 155a516f70eab3cc8fffda377fe0450ee27cfc0b Mon Sep 17 00:00:00 2001 From: ellermister Date: Wed, 3 Mar 2021 04:03:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8Dwebdav=E4=B8=8A=E4=BC=A0?= =?UTF-8?q?=E5=9B=BE=E7=89=87=E6=97=B6=E6=97=A0=E7=BC=A9=E7=95=A5=E5=9B=BE?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/filesystem/hooks.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/filesystem/hooks.go b/pkg/filesystem/hooks.go index 3b5755d..ea8ea53 100644 --- a/pkg/filesystem/hooks.go +++ b/pkg/filesystem/hooks.go @@ -321,6 +321,7 @@ func GenericAfterUpload(ctx context.Context, fs *FileSystem) error { fs.recycleLock.Lock() go func() { defer fs.recycleLock.Unlock() + file.Name = strings.Trim(file.Name, ".tacitpart") fs.GenerateThumbnail(ctx, file) }() }