Reveal hidden code on HOTP increment click

This commit is contained in:
elena 2022-11-02 21:07:37 +00:00
parent 8562fafda7
commit af9be15ae0

View file

@ -485,6 +485,7 @@ public class EntryAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
// this will only be called if the entry is of type HotpInfo // this will only be called if the entry is of type HotpInfo
try { try {
((HotpInfo) entry.getInfo()).incrementCounter(); ((HotpInfo) entry.getInfo()).incrementCounter();
focusEntry(entry, _tapToRevealTime);
} catch (OtpInfoException e) { } catch (OtpInfoException e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} }