diff options
Diffstat (limited to 'web')
| -rw-r--r-- | web/assets/js/model/outbound.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index 46390054..c50dc240 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -708,7 +708,7 @@ class Outbound extends CommonClass { let data = link.split('?'); if(data.length != 2) return null; - const regex = /([^@]+):\/\/([^@]+)@([^:]+):(\d+)\?(.*)$/; + const regex = /([^@]+):\/\/([^@]+)@(.+):(\d+)\?(.*)$/; const match = link.match(regex); if (!match) return null; |
