Commit df6d424b86391119a29d101da2fe0a42140583c6
default filter to all
cel committed on 1/14/2019, 7:54:07 PMParent: 0137a295d2cf9c659a360eca278d25d3f2f1b207
Files changed
lib/app.js | changed |
lib/app.js | ||
---|---|---|
@@ -33,9 +33,9 @@ | ||
33 | 33 … | |
34 | 34 … | var conf = config.patchfoo || {} |
35 | 35 … | this.port = conf.port || 8027 |
36 | 36 … | this.host = conf.host || 'localhost' |
37 | - this.msgFilter = conf.filter | |
37 … | + this.msgFilter = conf.filter == null ? 'all' : conf.filter | |
38 | 38 … | this.showPrivates = conf.showPrivates == null ? true : conf.showPrivates |
39 | 39 … | this.previewVotes = conf.previewVotes == null ? false : conf.previewVotes |
40 | 40 … | this.previewContacts = conf.previewContacts == null ? false : conf.previewContacts |
41 | 41 … | this.useOoo = conf.ooo == null ? false : conf.ooo |
Built with git-ssb-web