mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-22 03:56:54 -06:00
Merge pull request #682 from jtapeg/fix-groups-ignore
Fix: groups_ignore in /instance/create and maintaining compatibility
This commit is contained in:
commit
1d81c79fe6
@ -396,7 +396,7 @@ export class InstanceController {
|
||||
const settings: wa.LocalSettings = {
|
||||
reject_call: reject_call || false,
|
||||
msg_call: msg_call || '',
|
||||
groups_ignore: groups_ignore || true,
|
||||
groups_ignore: groups_ignore === undefined ? true : groups_ignore || false,
|
||||
always_online: always_online || false,
|
||||
read_messages: read_messages || false,
|
||||
read_status: read_status || false,
|
||||
|
Loading…
Reference in New Issue
Block a user