commit 1048d62138f6bc7dcd03ade8c89789df89d0c07d parent 3004159d70b60a5e91380038856647e187e04949 Author: n0tr1v <n0tr1v@protonmail.com> Date: Wed, 25 Jan 2023 18:21:27 -0800 fix typo Diffstat:
| M | pkg/database/tableFiledrops.go | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/database/tableFiledrops.go b/pkg/database/tableFiledrops.go @@ -44,7 +44,7 @@ func CreateFiledrop() (out Filedrop, err error) { } func (d *Filedrop) Exists() bool { - filePath1 := filepath.Join(UploadFolder, d.FileName) + filePath1 := filepath.Join(FiledropFolder, d.FileName) return utils.FileExists(filePath1) }