diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-11-26 16:28:24 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-11-26 16:28:24 +0100 |
commit | b927bea9c72844a88d0406cde996d167aecd3851 (patch) | |
tree | c3eeacdb21aa18a77c1d98277e0bae46e870a4cb /plugin.go | |
parent | 538bba477414e90e8d164903997cbfd8a90682dd (diff) |
actually honor NoAutoPlugins config option
Diffstat (limited to 'plugin.go')
-rw-r--r-- | plugin.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ func openPlugins() { } for _, pl := range dir { - if pl.IsDir() { + if pl.IsDir() && !Conf().NoAutoPlugins { plPath := path + "/" + pl.Name() wd, err := os.Getwd() |