소스 검색

Fixed regexp

Brendan Abolivier 8 년 전
부모
커밋
14d1683bfb
로그인 계정: Brendan Abolivier <contact@brendanabolivier.com> GPG 키 ID: 8EF1500759F70623
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      front/form.js

+ 2
- 2
front/form.js 파일 보기

@@ -19,9 +19,9 @@ function getServer() {
19 19
         if(script.src) {
20 20
             let url = script.src;
21 21
             // This should be our script
22
-            if(url.match(/:[0-9]+\/form\.js$/)) {
22
+            if(url.match(/form\.js$/)) {
23 23
                 // Port has been found
24
-                return url.match(/^(http:\/\/[^\/]+)/)[1];
24
+                return url.match(/^(https?:\/\/[^\/]+)/)[1];
25 25
             }
26 26
         }
27 27
     }