Skip to content

Commit

Permalink
Do not warn about lack of internet if WROL Mode is enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
lrnselfreliance committed Oct 17, 2024
1 parent 52adda2 commit 1f882ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/DashboardPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function FlagsMessages() {
}

let internetDownMessage;
if (!flags.have_internet && !flags.wrol_mode) {
if (!flags.have_internet && !settings.wrol_mode) {
internetDownMessage = <ErrorMessage icon='globe'>
<Message.Header>No Internet</Message.Header>
WROLPi has no Internet. Downloads will not start.
Expand Down

0 comments on commit 1f882ee

Please sign in to comment.