From: Martin Kletzander Date: Thu, 20 Jun 2019 15:00:17 +0000 (+0200) Subject: docs: Fix Blog Planet links X-Git-Tag: v5.5.0-rc1~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05ac854cc830cb4dd301fa27679883e296f30a08;p=thirdparty%2Flibvirt.git docs: Fix Blog Planet links They were pointing to the blogs instead, now they point the articles. Signed-off-by: Martin Kletzander --- 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");