🎨 Improve sync plugin reload event https://github.com/siyuan-note/siyuan/issues/12433#issuecomment-2380385588
This commit is contained in:
parent
0fa9726bb8
commit
d6caa2083f
1 changed files with 10 additions and 0 deletions
|
@ -1437,6 +1437,11 @@ func processSyncMergeResult(exit, byHand bool, mergeResult *dejavu.MergeResult,
|
|||
|
||||
if strings.HasPrefix(file.Path, "/storage/petal/") {
|
||||
needReloadPlugin = true
|
||||
if parts := strings.Split(file.Path, "/"); 3 < len(parts) {
|
||||
if pluginName := parts[3]; "petals.json" != pluginName {
|
||||
upsertPluginSet.Add(pluginName)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if strings.HasPrefix(file.Path, "/plugins/") {
|
||||
|
@ -1470,6 +1475,11 @@ func processSyncMergeResult(exit, byHand bool, mergeResult *dejavu.MergeResult,
|
|||
|
||||
if strings.HasPrefix(file.Path, "/storage/petal/") {
|
||||
needReloadPlugin = true
|
||||
if parts := strings.Split(file.Path, "/"); 3 < len(parts) {
|
||||
if pluginName := parts[3]; "petals.json" != pluginName {
|
||||
removePluginSet.Add(pluginName)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if strings.HasPrefix(file.Path, "/plugins/") {
|
||||
|
|
Loading…
Add table
Reference in a new issue