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