Skip to content

Commit

Permalink
Fix: groups_ignore in /instance/create and maintaining compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
jtapeg committed Jul 7, 2024
1 parent 549ecd8 commit c55885b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/controllers/instance.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit c55885b

Please sign in to comment.