Skip to content

Commit

Permalink
fixed maximum password length
Browse files Browse the repository at this point in the history
  • Loading branch information
Gl1tchub committed Nov 9, 2024
1 parent a2aba63 commit 3e40bd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sd_spi/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ App(
stack_size=2 * 1024,
fap_category="GPIO",
# Optional values
# fap_version=(0, 2), # (major, minor)
# fap_version=(0, 3), # (major, minor)
fap_icon="sd_spi_app_10px.png", # 10x10 1-bit PNG
fap_description="SD SPI Lock Management",
# fap_weburl="https://github.com/Gl1tchub/Flipperzero-SD-SPI",
Expand Down
2 changes: 1 addition & 1 deletion sd_spi/sd_spi_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ void app_scene_on_enter_password(void* context) {
text_input_done_callback,
app,
app->input_pwd,
PASSWORD_MAX_LEN,
PASSWORD_MAX_LEN+1,
false);
view_dispatcher_switch_to_view(app->view_dispatcher, AppView_TextInput);
}
Expand Down

0 comments on commit 3e40bd5

Please sign in to comment.