chore(matrix_member): set module to always return changed in check_mode

This commit is contained in:
Johanna Dorothea Reichmann 2023-01-31 10:17:49 +01:00
parent 3892bc6014
commit dd8ef85524
No known key found for this signature in database
GPG key ID: 03624C433676E465

View file

@ -209,6 +209,7 @@ async def run_module():
# Handle ansible check mode
if module.check_mode:
result["changed"] = True
result["members"] = user_ids
await module.exit_json(**result)