mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
parent
3a616e2d9f
commit
5e1b07dce3
2 changed files with 2 additions and 1 deletions
|
@ -1027,7 +1027,7 @@ def app_matches_packagename(app, package):
|
|||
if not package:
|
||||
return False
|
||||
appid = app['Update Check Name'] or app['id']
|
||||
if appid == "Ignore":
|
||||
if appid is None or appid == "Ignore":
|
||||
return True
|
||||
return appid == package
|
||||
|
||||
|
|
|
@ -175,6 +175,7 @@ def main():
|
|||
|
||||
apps = metadata.read_metadata()
|
||||
package, app = metadata.get_default_app_info_list(apps)
|
||||
app['id'] = None
|
||||
app['Update Check Mode'] = "Tags"
|
||||
|
||||
root_dir = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue