make sure that the header is false for tags

This commit is contained in:
Nicco Kunzmann 2022-04-28 20:21:41 +00:00
parent 4c98017d32
commit 52556569fc
2 changed files with 2 additions and 1 deletions

View File

@ -98,6 +98,7 @@ async function promiseSome(proms){
}
module.exports = async function (opts) {
console.log("opts:", opts);
var opts = opts;
var feedUrl = opts.feedUrl;

View File

@ -80,7 +80,7 @@
var showBoosts = (!document.getElementById('hideboosts').checked).toString();
var showReplies = (!document.getElementById('hidereplies').checked).toString();
var showHeader = document.getElementById('header').checked.toString()
var showHeader = (isUser && document.getElementById('header').checked).toString()
var portStr = (window.location.port && window.location.port != 80) ? (':' + window.location.port) : ''
var iframeUrl = window.location.protocol + '//' + window.location.hostname + portStr