Skip to content

Commit

Permalink
Make non-HTTPS message more harsh
Browse files Browse the repository at this point in the history
As browsers are placing more and more new functionality as
secure-context only, we need to prepare users for more problems. I find
it likely that we will disable non-HTTPS connections in the future.
  • Loading branch information
samhed committed Feb 2, 2024
1 parent 48c8e41 commit e75938b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const UI = {
// insecure context
if (!window.isSecureContext) {
// FIXME: This gets hidden when connecting
UI.showStatus(_("HTTPS is required for full functionality"), 'error');
UI.showStatus(_("Running without HTTPS is not recommended, crashes or other issues are likely."), 'error');
}

// Try to fetch version number
Expand Down

0 comments on commit e75938b

Please sign in to comment.