aboutsummaryrefslogtreecommitdiff
path: root/nitrocli/src/commands.rs
diff options
context:
space:
mode:
Diffstat (limited to 'nitrocli/src/commands.rs')
-rw-r--r--nitrocli/src/commands.rs11
1 files changed, 7 insertions, 4 deletions
diff --git a/nitrocli/src/commands.rs b/nitrocli/src/commands.rs
index e125f17..ac2bbf1 100644
--- a/nitrocli/src/commands.rs
+++ b/nitrocli/src/commands.rs
@@ -411,10 +411,13 @@ pub fn otp_get(
let device = get_device(ctx)?;
if algorithm == args::OtpAlgorithm::Totp {
device
- .set_time(match time {
- Some(time) => time,
- None => get_unix_timestamp()?,
- })
+ .set_time(
+ match time {
+ Some(time) => time,
+ None => get_unix_timestamp()?,
+ },
+ true,
+ )
.map_err(|err| get_error("Could not set time", err))?;
}
let config = device