Closed windware-ono closed 6 years ago
Is it possible to set it to 100 by changing,
let quality = config.quality || 100; to let quality = config && config.quality || 100; ?
let quality = config.quality || 100;
to let quality = config && config.quality || 100; ?
Ow sure i’ll change it
Sent with GitHawk
Should be fixed in latest version, also did a performance and mainly stability improvement by not always including every plugin
Is it possible to set it to 100 by changing,