diff --git a/js/app.js b/js/app.js index 65e5a83..8b72adf 100644 --- a/js/app.js +++ b/js/app.js @@ -93,7 +93,9 @@ Rcon.on('connected', function () { var addr = Rcon.getAddress(); showConnected(addr); - Router.go('#/' + addr + '/info'); + // navigate() directly so it works even when the hash already matches + // (e.g. F5 reload then clicking a saved connection) + Router.navigate('#/' + addr + '/info'); }); Rcon.on('disconnected', function () {