File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 33## v3.2.0 - 2 Aug 2023
44
55* Implemented [ #177 ] ( https://github.com/akopachov/flipper-zero_authenticator/issues/177 )
6+ * Fixed [ #178 ] ( https://github.com/akopachov/flipper-zero_authenticator/issues/178 )
67* Refactoring
78
89## v3.1.0 - 31 Jul 2023
Original file line number Diff line number Diff line change @@ -53,6 +53,11 @@ static bool totp_activate_initial_scene(PluginState* const plugin_state) {
5353 DialogMessageButton dialog_result =
5454 dialog_message_show (plugin_state -> dialogs_app , message );
5555 dialog_message_free (message );
56+ if (!totp_crypto_check_key_slot (plugin_state -> crypto_key_slot )) {
57+ totp_dialogs_config_loading_error (plugin_state );
58+ return false;
59+ }
60+
5661 if (dialog_result == DialogMessageButtonRight ) {
5762 totp_scene_director_activate_scene (plugin_state , TotpSceneAuthentication );
5863 } else {
You can’t perform that action at this time.
0 commit comments