Ver código fonte

Allow hosting on specific path

Brendan Abolivier 7 anos atrás
pai
commit
fcf231e002
Assinado por: Brendan Abolivier <contact@brendanabolivier.com> ID da chave GPG: 8EF1500759F70623
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      front/form.js

+ 1
- 1
front/form.js Ver arquivo

@@ -85,7 +85,7 @@ function getServer() {
85 85
 			// This should be our script
86 86
 			if(url.match(/form\.js$/)) {
87 87
 				// Port has been found
88
-				return url.match(/^(https?:\/\/[^\/]+)/)[1];
88
+				return url.match(/^(https?:\/\/.+)\/form\.js/)[1];
89 89
 			}
90 90
 		}
91 91
 	}