channel-worker 1.6.11 → 1.6.12
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/lib/nst-manager.js +1 -1
- package/package.json +1 -1
package/lib/nst-manager.js
CHANGED
|
@@ -20,7 +20,7 @@ class NstManager {
|
|
|
20
20
|
// Get all running browsers
|
|
21
21
|
async getRunningBrowsers() {
|
|
22
22
|
try {
|
|
23
|
-
const rawRes = await fetch(`${this.baseUrl}/browsers
|
|
23
|
+
const rawRes = await fetch(`${this.baseUrl}/browsers`, {
|
|
24
24
|
headers: { 'x-api-key': this.apiKey },
|
|
25
25
|
});
|
|
26
26
|
const text = await rawRes.text();
|