From: Daniel Martí Date: Sun, 25 Oct 2015 18:10:23 +0000 (+0100) Subject: Don't double check package name X-Git-Tag: 0.5.0~25 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=8812e9339daf900fd873e0565a5754b39842b937;p=fdroidserver.git Don't double check package name --- diff --git a/fdroidserver/checkupdates.py b/fdroidserver/checkupdates.py index f6ebc57a..9baccbc0 100644 --- a/fdroidserver/checkupdates.py +++ b/fdroidserver/checkupdates.py @@ -150,7 +150,7 @@ def check_tags(app, pattern): paths = common.manifest_paths(root_dir, flavours) version, vercode, package = \ common.parse_androidmanifests(paths, app['Update Check Ignore']) - if app_matches_packagename(app, package) and version and vercode: + if vercode: logging.debug("Manifest exists in subdir '{0}'. Found version {1} ({2})" .format(subdir, version, vercode)) if int(vercode) > int(hcode): @@ -220,7 +220,7 @@ def check_repomanifest(app, branch=None): paths = common.manifest_paths(root_dir, flavours) version, vercode, package = \ common.parse_androidmanifests(paths, app['Update Check Ignore']) - if app_matches_packagename(app, package) and version and vercode: + if vercode: logging.debug("Manifest exists in subdir '{0}'. Found version {1} ({2})" .format(subdir, version, vercode)) if int(vercode) > int(hcode):