From dc8eb49b31a1b66fc310df56c8d9aabd9c038bfb Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Mon, 30 Jun 2014 12:04:22 +0100 Subject: [PATCH] Recognise published .asc signatures in web repo browser --- wp-fdroid/wp-fdroid.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-fdroid/wp-fdroid.php b/wp-fdroid/wp-fdroid.php index 13f93850..f70017f2 100644 --- a/wp-fdroid/wp-fdroid.php +++ b/wp-fdroid/wp-fdroid.php @@ -464,8 +464,8 @@ class FDroid $out.=$diffSize>0?'+':''; $out.=$this->human_readable_size($diffSize, 1).')'; } - if(file_exists($this->site_path.'/repo/'.$apk['apkname'].'.txt')) { - $out.=' GPG Signature '; + if(file_exists($this->site_path.'/repo/'.$apk['apkname'].'.asc')) { + $out.=' GPG Signature '; } if($srcbuild) { $out.='
source tarball '; -- 2.30.2