From 05ac854cc830cb4dd301fa27679883e296f30a08 Mon Sep 17 00:00:00 2001 From: Martin Kletzander Date: Thu, 20 Jun 2019 17:00:17 +0200 Subject: [PATCH] docs: Fix Blog Planet links They were pointing to the blogs instead, now they point the articles. Signed-off-by: Martin Kletzander --- docs/js/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/js/main.js b/docs/js/main.js index e48e95075c..2edc628304 100644 --- a/docs/js/main.js +++ b/docs/js/main.js @@ -116,10 +116,10 @@ function fetchRSS() { var name = e.querySelector("author > name").textContent; var title = e.querySelector("title").textContent; var updated = e.querySelector("updated").textContent; - var uri = e.querySelector("author > uri").textContent; + var link = e.querySelector("link").attributes.href.textContent; var a = document.createElement("a"); - a.href = uri; + a.href = link; a.innerText = title; var dt = document.createElement("dt");