This commit is contained in:
Liang Ding 2022-07-15 11:40:56 +08:00
parent ebb813d50d
commit 33ea08dcd0
No known key found for this signature in database
GPG key ID: 136F30F901A2231D

View file

@ -462,7 +462,7 @@ func RenameAsset(oldPath, newName string) (err error) {
return
}
newPath := util.AssetName(newName) + filepath.Ext(oldPath)
newPath := "assets/" + util.AssetName(newName) + filepath.Ext(oldPath)
if err = gulu.File.Copy(filepath.Join(util.DataDir, oldPath), filepath.Join(util.DataDir, newPath)); nil != err {
util.LogErrorf("copy asset [%s] failed: %s", oldPath, err)
return
@ -485,7 +485,7 @@ func RenameAsset(oldPath, newName string) (err error) {
}
if !bytes.Contains(data, []byte(oldPath)) {
return
continue
}
data = bytes.Replace(data, []byte(oldPath), []byte(newPath), -1)