LSP bugfix - dont add &login after hostname
This commit is contained in:
parent
6ae7b6146e
commit
2599769b9c
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ function showTab(tabName,streamName) {
|
|||
);
|
||||
|
||||
// retrieve address hash from URL
|
||||
var adr = location.hash.replace('#', '').split('@');
|
||||
var adr = location.hash.replace('#', '').split('&')[0].split('@');
|
||||
if(adr.length == 2) {
|
||||
$('#server').val(adr[1]);
|
||||
$('#credentials-username').val(adr[0]);
|
||||
|
|
Loading…
Add table
Reference in a new issue