Fixed sharing URL with ?&
This commit is contained in:
parent
7909731d1e
commit
7480ca1553
@ -4219,9 +4219,11 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
|
||||
function checkLocationTgAddr () {
|
||||
var tgaddr = $routeParams.tgaddr;
|
||||
if (tgaddr) {
|
||||
try {
|
||||
tgaddr = decodeURIComponent(tgaddr);
|
||||
} catch (e) {};
|
||||
if (!tgaddr.match(/[=&?]/)) {
|
||||
try {
|
||||
tgaddr = decodeURIComponent(tgaddr);
|
||||
} catch (e) {};
|
||||
}
|
||||
var matches = tgaddr.match(tgAddrRegExp);
|
||||
if (matches) {
|
||||
handleTgProtoAddr(matches[3]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user