@@ -224,6 +224,9 @@ Bumble.XFN = {
const links = document.querySelectorAll("a[rel]");
for(const link of links) {
+ // Ignore links that only contain images
+ if (link.childNodes.length == 1 && link.lastChild instanceof HTMLImageElement) { continue; }
+
const rels = link.rel.split(' ');
let rel = null;