API: Return metadata only for v4 api clients and above...

This commit is contained in:
Dominik Schürmann 2014-08-14 13:10:38 +02:00
parent 1a8606f194
commit 37edd0f390

View File

@ -428,7 +428,7 @@ public class OpenPgpService extends RemoteService {
}
}
if (data.getIntExtra(OpenPgpApi.EXTRA_API_VERSION, -1) == 4) {
if (data.getIntExtra(OpenPgpApi.EXTRA_API_VERSION, -1) >= 4) {
OpenPgpMetadata metadata = decryptVerifyResult.getDecryptMetadata();
if (metadata != null) {
result.putExtra(OpenPgpApi.RESULT_METADATA, metadata);