Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2025-12-24 17:06:06 +08:00
parent c03eed5049
commit 9d169abdd8
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -435,7 +435,14 @@ func uploadCloudByAssetsPaths(c *gin.Context) {
return
}
util.PushMsg(fmt.Sprintf(model.Conf.Language(41), count), 3000)
ignorePushMsg := false
if nil != arg["ignorePushMsg"] {
ignorePushMsg = arg["ignorePushMsg"].(bool)
}
if !ignorePushMsg {
util.PushMsg(fmt.Sprintf(model.Conf.Language(41), count), 3000)
}
}
func insertLocalAssets(c *gin.Context) {