Merge pull request #19 from H2-invent/development

add warning that the bot is a MIM
This commit is contained in:
holema 2023-12-11 17:07:07 +01:00 committed by GitHub
commit 553eeb8e07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,12 +60,12 @@ async function handleCommand(roomId, event) {
let body = event['content']['body'];
body = body.toLowerCase();
if (body?.startsWith("!jitsi")) {
await conferenceUtil.sendMessageWithUrl(roomId);
await conferenceUtil.changeRoomName(roomId);
conferenceUtil.sendMessageWithUrl(roomId);
conferenceUtil.changeRoomName(roomId);
}
if (body?.startsWith("!join")) {
await conferenceUtil.sendJoinConference(roomId);
conferenceUtil.sendJoinConference(roomId);
}
if (body?.startsWith("!hilfe")) {