Merge pull request #1006 from Informatic/patch-1

Fix passing connection credentials in URL hash
update-travis
Lorenz Hübschle-Schneider 7 years ago committed by GitHub
commit 1d71190cba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      js/glowingbear.js

@ -912,7 +912,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
$scope.init = function() { $scope.init = function() {
if (window.location.hash) { if (window.location.hash) {
var rawStr = atob(window.location.hash.substring(1)); var rawStr = atob(window.location.hash.substring(3));
window.location.hash = ""; window.location.hash = "";
var spl = rawStr.split(":"); var spl = rawStr.split(":");
var host = spl[0]; var host = spl[0];

Loading…
Cancel
Save