Skip to content

Commit e88c5e4

Browse files
author
DimitarTachev
committed
chore: fix the shorURL casing from the shortener endpoint
1 parent 04abcb8 commit e88c5e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/livesync/playground/qr-code-generator.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class PlaygroundQrCodeGenerator implements IPlaygroundQrCodeGenerator {
3232
try {
3333
const response = await this.$httpClient.httpRequest(shortenUrlEndpoint);
3434
const responseBody = JSON.parse(response.body);
35-
url = responseBody.shortUrl || url;
35+
url = responseBody.shortURL || url;
3636
} catch (e) {
3737
// use the longUrl
3838
}

0 commit comments

Comments
 (0)