diff options
author | Sebastian Reichel <sre@ring0.de> | 2018-06-28 01:29:41 +0200 |
---|---|---|
committer | Sebastian Reichel <sre@ring0.de> | 2018-06-28 01:53:40 +0200 |
commit | fb75ceb1c5a415cc6667043b1123e42586b1d9b1 (patch) | |
tree | d4b05ecfe8701e7e2da67868b6f9c850d3afb658 /src/pgp/pgp.vala | |
parent | 9503b54a12c228dc686f630ca97172662c18c58f (diff) | |
download | serial-barcode-scanner-fb75ceb1c5a415cc6667043b1123e42586b1d9b1.tar.bz2 |
pgp: replace deprecated Archive.Read.support_compression_all with Archive.Read.support_filter_all
Diffstat (limited to 'src/pgp/pgp.vala')
-rw-r--r-- | src/pgp/pgp.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pgp/pgp.vala b/src/pgp/pgp.vala index 560b00f..2a5b160 100644 --- a/src/pgp/pgp.vala +++ b/src/pgp/pgp.vala @@ -48,7 +48,7 @@ public class PGPKeyArchive { var archive = new Archive.Read(); /* support all formats & compression types */ - archive.support_compression_all(); + archive.support_filter_all(); archive.support_format_all(); /* load test archive for now */ |