From c23af7984c899e8d4b1b1f9e94bd4e64a5c74852 Mon Sep 17 00:00:00 2001 From: linsui Date: Wed, 10 Apr 2024 18:57:56 +0800 Subject: [PATCH] insert_funding_yml_donation_links: update lfx link community_bridge is lfx_crowdfunding now --- fdroidserver/update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fdroidserver/update.py b/fdroidserver/update.py index 36b395e3..e87976df 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -872,10 +872,10 @@ def insert_funding_yml_donation_links(apps): if s: app['Donate'] = s break - elif k == 'community_bridge': + elif k in ('community_bridge', 'lfx_crowdfunding'): s = sanitize_funding_yml_name(v) if s: - app['Donate'] = 'https://funding.communitybridge.org/projects/' + s + app['Donate'] = 'https://crowdfunding.lfx.linuxfoundation.org/projects/' + s break elif k == 'github': s = sanitize_funding_yml_name(v)