fix upload info log line

This commit is contained in:
ari melody 2025-09-30 22:30:06 +01:00
parent 1999ab7d2c
commit 42c6540ac3
Signed by: ari
GPG key ID: CF99829C92678188

View file

@ -50,7 +50,7 @@ func HandleImageUpload(app *model.AppState, data *string, directory string, file
return "", nil return "", nil
} }
app.Log.Info(log.TYPE_FILES, "\"%s/%s.%s\" created.", directory, filename, ext) app.Log.Info(log.TYPE_FILES, "\"%s\" created.", imagePath)
return filename, nil return filename, nil
} }