From 5a18fd8f2d644f71b217ac6674968e03c3f86609 Mon Sep 17 00:00:00 2001 From: Enrico Fasoli Date: Wed, 23 Dec 2015 09:53:18 +0100 Subject: [PATCH] fix typo --- webapp/components/navbar.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/components/navbar.jsx b/webapp/components/navbar.jsx index 63383b4..b0e1e2a 100644 --- a/webapp/components/navbar.jsx +++ b/webapp/components/navbar.jsx @@ -12,7 +12,7 @@ var Updater = React.createClass({ checkForUpdates () { var v = window.location.pathname var gateway = window.location.pathname.indexOf('/ipfs/') === 0 || window.location.pathname.indexOf('/ipns/') === 0 - if (v !== '/ipns/boards.ydns.eu' || !gateway) { + if (v !== '/ipns/boards.ydns.eu/' || !gateway) { this.setState({ update: true }) } },