mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-30 13:57:47 +00:00
Ensure git commit time doesn't overflow
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user