This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
projects:matrix_owncast [2021/04/07 20:04] admin |
projects:matrix_owncast [2021/04/07 20:18] (current) admin |
||
|---|---|---|---|
| Line 28: | Line 28: | ||
| if($line['type'] == "CHAT") { | if($line['type'] == "CHAT") { | ||
| if(!array_key_exists($line['id'], $tracker)) { | if(!array_key_exists($line['id'], $tracker)) { | ||
| - | $str = "<Owncast: ".$line['author']."> ".htmlspecialchars_decode(strip_tags($line['body'])); | + | $str = "<Owncast: ".$line['author']."> ".htmlspecialchars_decode(strip_tags($line['body']), ENT_QUOTES); |
| $tracker[$line['id']] = strip_tags($line['body']); | $tracker[$line['id']] = strip_tags($line['body']); | ||
| if(!empty($str)) { | if(!empty($str)) { | ||
| Line 61: | Line 61: | ||
| $room_id = "!room_id:homeserver"; | $room_id = "!room_id:homeserver"; | ||
| - | $sender_name = "@botname:homeserver"; // Set this to the name of the user associated with the access token, this stops it from getting stuck in a loop (and repeating what is said in both rooms forever). | + | $sender_name = "@botname:homeserver"; // IMPORTANT: Set this to the name of the user associated with the access token, this stops it from getting stuck in a loop (and repeating what is said in both rooms forever). |
| while(true) { | while(true) { | ||