Merge pull request #1009 from glowing-bear/revert-1006-patch-1
Revert "Fix passing connection credentials in URL hash"
This commit is contained in:
commit
7471df0f2a
|
@ -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(3));
|
var rawStr = atob(window.location.hash.substring(1));
|
||||||
window.location.hash = "";
|
window.location.hash = "";
|
||||||
var spl = rawStr.split(":");
|
var spl = rawStr.split(":");
|
||||||
var host = spl[0];
|
var host = spl[0];
|
||||||
|
|
Loading…
Reference in New Issue