mirror of
https://github.com/amark/gun.git
synced 2025-06-03 20:56:43 +00:00
Fix for gc_info_enable
This commit is contained in:
parent
2c8abba79c
commit
33893e40b8
@ -71,7 +71,7 @@
|
||||
const gc_enable = root.opt.gc_enable ? root.opt.gc_enable : true;
|
||||
const gc_delay = root.opt.gc_delay ? root.opt.gc_delay : 1000;
|
||||
|
||||
const gc_info_enable = root.opt.gc_info_enable ? root.opt.gc_info_enable : true;
|
||||
const gc_info_enable = ("gc_info_enable" in root.opt) ? root.opt.gc_info_enable : true;
|
||||
const gc_info = root.opt.gc_info ? root.opt.gc_info : 5000;
|
||||
const gc_info_mini = root.opt.gc_info_mini ? root.opt.gc_info_mini : false;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user