We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 501b39e commit ac6a15fCopy full SHA for ac6a15f
src/core/api/BackendRequestHandler.ts
@@ -20,14 +20,15 @@ export class BackendRequestHandler implements RequestHandler {
20
this.get = this.get.bind(this)
21
this.post = this.post.bind(this)
22
23
+ this.domain = domain
24
+ this.baseUrl = `https://${this.domain}`
25
+
26
const cookies = Spicetify.LocalStorage.get("beatsaber:cookies")
27
if (!cookies) {
28
this.cookieJar = new CookieJar()
29
return
30
}
31
this.cookieJar = CookieJar.fromJSON(cookies)
- this.domain = domain
- this.baseUrl = `https://${this.domain}`
32
33
34
get proxyUrl(): string {
0 commit comments