fix isLocal logic (f*ck yeah unit tests!)

This commit is contained in:
Vincent Breitmoser 2014-09-20 00:32:50 +02:00
parent 344bc1736d
commit 6062b5ef68
1 changed files with 1 additions and 1 deletions

View File

@ -237,6 +237,6 @@ public class WrappedSignature {
return false;
}
SignatureSubpacket p = mSig.getHashedSubPackets().getSubpacket(SignatureSubpacketTags.EXPORTABLE);
return ((Exportable) p).isExportable();
return ! ((Exportable) p).isExportable();
}
}