Merge pull request #899 from thelounge/change-default-maxhistory

Change default maxHistory to 10000
This commit is contained in:
Jérémie Astori 2017-02-08 00:58:02 -05:00 committed by GitHub
commit c5f16a4f41

View file

@ -160,11 +160,11 @@ module.exports = {
// //
// Defines the maximum number of history lines that will be kept in // Defines the maximum number of history lines that will be kept in
// memory per channel/query, in order to reduce the memory usage of // memory per channel/query, in order to reduce the memory usage of
// the server. Negative means unlimited. // the server. Setting this to -1 will keep unlimited amount.
// //
// @type integer // @type integer
// @default -1 // @default 10000
maxHistory: -1, maxHistory: 10000,
// //
// Default values for the 'Connect' form. // Default values for the 'Connect' form.