adjust tu changes in MatrixIm

This commit is contained in:
marko
2025-10-06 05:26:18 +02:00
parent 0b06883ff9
commit 672eaccfc9

View File

@@ -69,10 +69,9 @@ try:
),
home_server_url="https://matrix.org",
room_id="!vFXxgKsLbRLdWCSTIO:matrix.org",
credentials={
"user": "@ukenth-the-grumpy:matrix.org",
"password": "DQpSs1yn9Y26c1zo",
},
credentials=MatrixIm.Credentials(
"@ukenth-the-grumpy:matrix.org", "DQpSs1yn9Y26c1zo"
),
)
next_birthday_kids = sorted(
@@ -91,18 +90,16 @@ try:
),
home_server_url="https://matrix.org",
room_id="!vFXxgKsLbRLdWCSTIO:matrix.org",
credentials={
"user": "@ukenth-the-grumpy:matrix.org",
"password": "DQpSs1yn9Y26c1zo",
},
credentials=MatrixIm.Credentials(
"@ukenth-the-grumpy:matrix.org", "DQpSs1yn9Y26c1zo"
),
)
except Exception as e:
MatrixIm.post(
message=f"bdCheck: Exception {e} ({repr(e)})\nResponse was {response}",
home_server_url="https://matrix.org",
room_id="!vFXxgKsLbRLdWCSTIO:matrix.org",
credentials={
"user": "@ukenth-the-grumpy:matrix.org",
"password": "DQpSs1yn9Y26c1zo",
},
credentials=MatrixIm.Credentials(
"@ukenth-the-grumpy:matrix.org", "DQpSs1yn9Y26c1zo"
),
)