1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-19 14:08:11 +00:00

fsm: update storage after ApplyFlags

This commit is contained in:
Pavol Rusnak 2018-04-04 01:08:39 +02:00
parent 159df8d24f
commit 3a908d7c7d
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -706,6 +706,7 @@ void fsm_msgApplyFlags(ApplyFlags *msg)
{ {
if (msg->has_flags) { if (msg->has_flags) {
storage_applyFlags(msg->flags); storage_applyFlags(msg->flags);
storage_update();
} }
fsm_sendSuccess(_("Flags applied")); fsm_sendSuccess(_("Flags applied"));
} }