right type used

This commit is contained in:
2026-02-20 15:28:26 +02:00
parent 8546ad496f
commit 1c8f6f142c
18 changed files with 146 additions and 144 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ import (
"path/filepath"
"mstore/app/logger"
"mstore/pkg/auxuuid"
"mstore/pkg/uuid"
)
const (
@@ -80,7 +80,7 @@ func (store *Storage) WriteTempFile(source io.Reader) (string, int64, string, er
var size int64
var csum string
tmpname := string(auxuuid.NewUUID())
tmpname := string(uuid.NewUUID())
tmpname = fmt.Sprintf("file-%s.tmp", tmpname)
tmppath := store.makeTmppath(tmpname)