diff options
author | 2024-01-25 18:20:02 +0100 | |
---|---|---|
committer | 2024-01-25 18:20:02 +0100 | |
commit | e58c867a82f4c884eaeda93519ed8464d052837c (patch) | |
tree | 481e222f4b2f6987a89eae1f5ed8d2255d8223d4 /static/connectivity.js | |
parent | d08d13f2c87b24fadb92e31c50dedc6e56c3c088 (diff) | |
download | rss-bridge-e58c867a82f4c884eaeda93519ed8464d052837c.tar.gz rss-bridge-e58c867a82f4c884eaeda93519ed8464d052837c.tar.zst rss-bridge-e58c867a82f4c884eaeda93519ed8464d052837c.zip |
feat: token authentication (#3927)
Diffstat (limited to 'static/connectivity.js')
-rw-r--r-- | static/connectivity.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/connectivity.js b/static/connectivity.js index 55ee9434..2f39ce6b 100644 --- a/static/connectivity.js +++ b/static/connectivity.js @@ -48,7 +48,7 @@ function buildTable(bridgeList) { // Link to the actual bridge on frontpage var a = document.createElement('a'); - a.href = remote + "/?show_inactive=1#bridge-" + bridge; + a.href = remote + "/?#bridge-" + bridge; a.target = '_blank'; a.innerText = '[Show]'; a.style.marginLeft = '5px'; |