We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6f27014 + 1c30557 commit efaa6afCopy full SHA for efaa6af
app/src/main/java/com/beemdevelopment/aegis/ui/views/EntryHolder.java
@@ -433,7 +433,7 @@ public void startExpirationAnimation() {
433
434
final int totalStateDuration = 7000;
435
TotpInfo info = (TotpInfo) _entry.getInfo();
436
- if (info.getPeriod() * 1000 < totalStateDuration) {
+ if (info.getPeriod() * 1000 <= totalStateDuration) {
437
_profileCode.setTextColor(MaterialColors.getColor(_profileCode, com.google.android.material.R.attr.colorError));
438
return;
439
}
0 commit comments