Skip to content

Commit 7bf70d1

Browse files
committed
fix(rocksky): Use correct URL for auth validation
1 parent 8eae2dc commit 7bf70d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/common/vendor/RockSkyApiClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export class RockSkyApiClient extends AbstractApiClient {
130130

131131
testAuth = async () => {
132132
try {
133-
const resp = await this.callApi(request.get(`${joinedUrl(this.lzUrl.url,'1/validate-token')}`));
133+
const resp = await this.callLZApi(request.get(`${joinedUrl(this.lzUrl.url,'1/validate-token')}`));
134134
return true;
135135
} catch (e) {
136136
throw e;

0 commit comments

Comments
 (0)