Skip to content

Commit

Permalink
Add note about VPNs to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
brittag authored Jul 28, 2024
1 parent b10240b commit f68b5a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/javascripts/door.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $(document).ready(() => {

$("#unlock-door").click(async () => {
if ($("#unlock-door").hasClass('disabled')) {
alert('Door control not accessible. Are you on the space Wi-Fi?');
alert('Door control not accessible. Are you on the space Wi-Fi? If yes, do you have a VPN or iCloud Private Relay enabled?');
return;
}

Expand Down Expand Up @@ -57,4 +57,4 @@ $(document).ready(() => {
$("#error-text").text(`Failed to unlock door: ${e}`);
}
});
});
});

0 comments on commit f68b5a3

Please sign in to comment.