🎨 Support one-click enable/disable of all downloaded plugins https://github.com/siyuan-note/siyuan/issues/8523
This commit is contained in:
parent
d54195a943
commit
5d4ac05269
1 changed files with 2 additions and 3 deletions
|
@ -44,7 +44,7 @@ type PetalConf struct {
|
|||
Enabled bool `json:"enabled"`
|
||||
}
|
||||
|
||||
func (conf *PetalConf) Save() {
|
||||
func (pConf *PetalConf) Save() {
|
||||
if util.ReadOnly {
|
||||
return
|
||||
}
|
||||
|
@ -52,11 +52,10 @@ func (conf *PetalConf) Save() {
|
|||
petalsStoreLock.Lock()
|
||||
defer petalsStoreLock.Unlock()
|
||||
|
||||
data, _ := gulu.JSON.MarshalIndentJSON(Conf, "", " ")
|
||||
data, _ := gulu.JSON.MarshalIndentJSON(pConf, "", " ")
|
||||
petalDir := filepath.Join(util.DataDir, "storage", "petal")
|
||||
if err := os.MkdirAll(petalDir, 0777); nil != err {
|
||||
logging.LogErrorf("create petal dir [%s] failed: %s", petalDir, err)
|
||||
util.ReportFileSysFatalError(err)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue