From 94df3810ec00040c82f270d5abbde884d2745cfc Mon Sep 17 00:00:00 2001 From: doesnm Date: Tue, 29 Oct 2024 15:50:40 +0300 Subject: [PATCH] some fixes --- blog.js | 14 +++++++++++++- index.html | 5 ++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/blog.js b/blog.js index c2b452f..883a305 100644 --- a/blog.js +++ b/blog.js @@ -27,11 +27,13 @@ if(post.type != "m.room.message") return false; let body = DOMPurify.sanitize(post.content.formatted_body ?? post.content.body); body = body.split("\n").join("
"); + // body = body.replace(/mxc\:\/\//, "https://matrix.org/_matrix/media/v3/download/") table.innerHTML += `${post.sender}
${body}${post.content.msgtype == "m.image" ? `
` : ''}${getReactions(posts,post)}${!noButton ? `
Открыть` : ''}`; } function loadPosts(roomId,start){ const ignored_events = []; +posts = []; table.innerHTML = `Контент`; if(posts.length < 1 || start != undefined){ fetch("https://matrix.org/_matrix/client/v3/rooms/" + encodeURIComponent(roomId) + "/messages?limit=50&access_token=" + localStorage.access_token + (start ? `&from=${start}`: '') + "&dir=b").then(r => r.json()).then(json => { @@ -97,7 +99,17 @@ table.innerHTML = `Контент`; } }); }else{ -table.innerHTML = 'Добро пожаловатьЭто блог работающий поверх децентрализованного мессенджера Matrix' +table.innerHTML = ` +Добро пожаловать +Это блог работающий поверх децентрализованного мессенджера Matrix + +Известные блоги: + + +`; } } window.addEventListener("load", () => { diff --git a/index.html b/index.html index 2f47d5c..00344f6 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,7 @@ + Blog @@ -11,11 +12,13 @@