mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-18 14:35:27 +01:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
a6f9eac99f
1 changed files with 8 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue