update totp plugin

https://github.com/akopachov/flipper-zero_authenticator
This commit is contained in:
MX
2022-10-13 16:57:08 +03:00
parent 220adf2375
commit 8e0e4b5e2c
49 changed files with 1989 additions and 1934 deletions

View File

@@ -6,7 +6,7 @@ int32_t timezone_offset_from_hours(float hours) {
uint64_t timezone_offset_apply(uint64_t time, int32_t offset) {
uint64_t for_time_adjusted;
if(offset > 0) {
if (offset > 0) {
for_time_adjusted = time - offset;
} else {
for_time_adjusted = time + (-offset);