diff options
author | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2019-01-14 09:54:07 -1000 |
---|---|---|
committer | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2019-01-14 09:54:07 -1000 |
commit | df6d424b86391119a29d101da2fe0a42140583c6 (patch) | |
tree | 72ce6265e21d8324251fbd16a89b04131a26e631 /lib | |
parent | 0137a295d2cf9c659a360eca278d25d3f2f1b207 (diff) | |
download | patchfoo-df6d424b86391119a29d101da2fe0a42140583c6.tar.gz patchfoo-df6d424b86391119a29d101da2fe0a42140583c6.zip |
default filter to all
Diffstat (limited to 'lib')
-rw-r--r-- | lib/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ function App(sbot, config) { var conf = config.patchfoo || {} this.port = conf.port || 8027 this.host = conf.host || 'localhost' - this.msgFilter = conf.filter + this.msgFilter = conf.filter == null ? 'all' : conf.filter this.showPrivates = conf.showPrivates == null ? true : conf.showPrivates this.previewVotes = conf.previewVotes == null ? false : conf.previewVotes this.previewContacts = conf.previewContacts == null ? false : conf.previewContacts |