Skip to content

Commit

Permalink
fix wrong conversion to seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
aiden-shi committed Feb 16, 2022
1 parent 2288f8d commit 55a7ff7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ScanResultInvalidFragment : AutoCloseFragment(R.layout.fragment_scan_resul
return if (BuildConfig.FLAVOR == "acc") {
TimeUnit.SECONDS.toMillis(10)
} else {
TimeUnit.MINUTES.toSeconds(3)
TimeUnit.MINUTES.toMillis(3)
}
}

Expand Down

0 comments on commit 55a7ff7

Please sign in to comment.