File tree 1 file changed +1
-8
lines changed
1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,6 @@ func UploadUserFiles(router *gin.RouterGroup) {
74
74
event .Publish ("upload.start" , event.Data {"uid" : s .UserUID , "time" : start })
75
75
76
76
files := f .File ["files" ]
77
- uploaded := len (files )
78
77
79
78
var uploads []string
80
79
@@ -98,15 +97,9 @@ func UploadUserFiles(router *gin.RouterGroup) {
98
97
99
98
if fileType == fs .TypeUnknown {
100
99
log .Warnf ("upload: rejected %s due to unknown or unsupported extension" , clean .Log (fileName ))
101
- if err = os .Remove (filePath ); err != nil {
102
- log .Errorf ("upload: %s could not be deleted (%s)" , clean .Log (fileName ), err )
103
- }
104
100
continue
105
101
} else if allowExt .Excludes (fileType .DefaultExt ()) {
106
102
log .Warnf ("upload: rejected %s because the file type is not allowed" , clean .Log (fileName ))
107
- if err = os .Remove (filePath ); err != nil {
108
- log .Errorf ("upload: %s could not be deleted (%s)" , clean .Log (fileName ), err )
109
- }
110
103
continue
111
104
}
112
105
@@ -159,7 +152,7 @@ func UploadUserFiles(router *gin.RouterGroup) {
159
152
160
153
elapsed := int (time .Since (start ).Seconds ())
161
154
162
- msg := i18n .Msg (i18n .MsgFilesUploadedIn , uploaded , elapsed )
155
+ msg := i18n .Msg (i18n .MsgFilesUploadedIn , len ( uploads ) , elapsed )
163
156
164
157
log .Info (msg )
165
158
You can’t perform that action at this time.
0 commit comments