Skip to content

Commit

Permalink
fix: "Send a raven" not maintaining formatted text. #622
Browse files Browse the repository at this point in the history
  • Loading branch information
sumitjain236 committed Jan 19, 2024
1 parent d38fd94 commit ee76811
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion raven/public/js/timeline_button.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ $(document).on('app_ready', function () {
(channel) => channel.name == values.channel
).value;
// get message from values.message and clean it up, remove html tags
let message = values.message.replace(/<[^>]*>?/gm, '');
// let message = values.message.replace(/<[^>]*>?/gm, '');
let message = values.message;

let get_type = (url) => {
if (url) {
Expand Down

0 comments on commit ee76811

Please sign in to comment.