feat(plugin): set plugin default status is disabled

This commit is contained in:
LinkinStars 2023-03-16 14:56:06 +08:00
parent 210d26289a
commit 40fb10b4d9
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ func (m *statusManager) IsEnabled(name string) bool {
if status, ok := m.status[name]; ok {
return status
}
return true
return false
}
// MarshalJSON implements the json.Marshaler interface.