embed title fix

This commit is contained in:
MathMan05
2025-11-22 17:16:36 -06:00
parent f845b511c3
commit 538f8643e2
+1 -1
View File
@@ -395,7 +395,7 @@ class Embed {
const a = document.createElement("a");
if (this.json.url && this.json.url) {
MarkDown.safeLink(a, this.json.url);
a.textContent = this.json.url;
a.textContent = this.json.title || this.json.url;
div.append(a);
}
if (this.json.description) {