mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-27 19:22:14 -05:00
small bug in has_certify
This commit is contained in:
parent
07d6a26778
commit
00286744f2
@ -272,7 +272,7 @@ public class KeychainProvider extends ContentProvider {
|
|||||||
projectionMap.put(KeyRings.HAS_SIGN,
|
projectionMap.put(KeyRings.HAS_SIGN,
|
||||||
"kS." + Keys.KEY_ID + " AS " + KeyRings.HAS_SIGN);
|
"kS." + Keys.KEY_ID + " AS " + KeyRings.HAS_SIGN);
|
||||||
projectionMap.put(KeyRings.HAS_CERTIFY,
|
projectionMap.put(KeyRings.HAS_CERTIFY,
|
||||||
"kC." + Keys.KEY_ID + " AS " + KeyRings.HAS_SIGN);
|
"kC." + Keys.KEY_ID + " AS " + KeyRings.HAS_CERTIFY);
|
||||||
projectionMap.put(KeyRings.IS_EXPIRED,
|
projectionMap.put(KeyRings.IS_EXPIRED,
|
||||||
"(" + Tables.KEYS + "." + Keys.EXPIRY + " IS NOT NULL AND " + Tables.KEYS + "." + Keys.EXPIRY
|
"(" + Tables.KEYS + "." + Keys.EXPIRY + " IS NOT NULL AND " + Tables.KEYS + "." + Keys.EXPIRY
|
||||||
+ " < " + new Date().getTime() / 1000 + ") AS " + KeyRings.IS_EXPIRED);
|
+ " < " + new Date().getTime() / 1000 + ") AS " + KeyRings.IS_EXPIRED);
|
||||||
|
Loading…
Reference in New Issue
Block a user