mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-04-13 09:55:53 +02:00
Ensure git commit time doesn't overflow
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
parent
36b0a41578
commit
5ce19cd92d
|
|
@ -453,7 +453,7 @@ public class PasswordStore extends AppCompatActivity {
|
|||
return -1;
|
||||
}
|
||||
|
||||
return iterator.next().getCommitTime() * 1000;
|
||||
return ((long) iterator.next().getCommitTime()) * 1000;
|
||||
}
|
||||
|
||||
public void decryptPassword(PasswordItem item) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue