Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BDE-230: Improve invalid/missing CLID error message #66

Merged
merged 1 commit into from
Apr 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/popup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -453,9 +453,9 @@ function loadPage(worker) {
if (connectSubscription.errorMessage) {
const error = JSON.parse(connectSubscription.errorMessage);
const alertText = `
Cannot retrieve your server connect registration from \`${connectUrl}\`...
${JSON.stringify(error, null, 2)}
`.replace(/\n/g, '<br>');
Cannot retrieve your server registration from \`${connectUrl}\`...
<br/>Most probably your CLID is invalid or missing !
<br/>(see console logs for mor details)`;

Swal.fire({
title: 'Warning',
Expand Down