Skip to content

Commit

Permalink
Updated html read error message
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbrodude6119 committed Jul 4, 2023
1 parent cd4f624 commit 8d737c5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions helpers/evil_portal_storage.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ void evil_portal_read_index_html(void *context) {
storage_file_close(index_html);
storage_file_free(index_html);
} else {
char * html_error = "Something went wrong with reading the html file.\n"
"Is the SD Card set up correctly?";
char * html_error = "<b>Evil portal</b>\nUnable to read the html file.\n"
"Is the SD Card set up correctly? See instructions\n"
"github.com/bigbrodude6119/flipper-zero-evil-portal\n"
"'Install pre-built app on the flipper'";
app->index_html = (uint8_t *)html_error;
}

Expand Down

0 comments on commit 8d737c5

Please sign in to comment.