From 644e3457c4284a9dedc0950e277a83bfd3ebaafa Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Fri, 10 Jan 2025 18:40:44 +0100 Subject: [PATCH] Update ContributionListing.java We need to target the POST request at the redirect instead of the direct file --- app/src/processing/app/contrib/ContributionListing.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/contrib/ContributionListing.java b/app/src/processing/app/contrib/ContributionListing.java index aa623cb11..dbc1be11b 100644 --- a/app/src/processing/app/contrib/ContributionListing.java +++ b/app/src/processing/app/contrib/ContributionListing.java @@ -44,7 +44,7 @@ public class ContributionListing { * Stable URL that will redirect to wherever the file is hosted. * Changed to use https in 4.0 beta 8 (returns same data). */ - static final String LISTING_URL = "https://contributions.processing.org/contribs.txt"; + static final String LISTING_URL = "https://contributions.processing.org/contribs"; static final String LOCAL_FILENAME = "contribs.txt"; /** Location of the listing file on disk, will be read and written. */