remove check for '0' input

This commit is contained in:
Carlosokumu 2024-12-12 15:47:07 +03:00
parent 43892f0d8c
commit a799e19afc
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -732,9 +732,7 @@ func (h *Handlers) ResetIncorrectPin(ctx context.Context, sym string, input []by
// Setback sets the flag_back_set flag when the navigation is back
func (h *Handlers) SetBack(ctx context.Context, sym string, input []byte) (resource.Result, error) {
var res resource.Result
//TODO:
//Add check if the navigation is lateral nav instead of checking the input.
if string(input) == "0" {
if h.st.Back() {
flag_back_set, _ := h.flagManager.GetFlag("flag_back_set")
res.FlagSet = append(res.FlagSet, flag_back_set)
}