mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 20:43:08 +00:00
Merge pull request #899 from thelounge/change-default-maxhistory
Change default maxHistory to 10000
This commit is contained in:
commit
c5f16a4f41
1 changed files with 3 additions and 3 deletions
|
@ -160,11 +160,11 @@ module.exports = {
|
|||
//
|
||||
// Defines the maximum number of history lines that will be kept in
|
||||
// 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
|
||||
// @default -1
|
||||
maxHistory: -1,
|
||||
// @default 10000
|
||||
maxHistory: 10000,
|
||||
|
||||
//
|
||||
// Default values for the 'Connect' form.
|
||||
|
|
Loading…
Reference in a new issue