From 20b07450d91ba5e85c47facb75a17fc515ee8087 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Tue, 11 Nov 2025 10:25:48 -0600 Subject: [PATCH] Update Harmony link format in SubmissionLinkGenerator - Modified the URL structure in the generate_harmony_link method to include 'release' in the path for better clarity and accuracy in generating submission links from Deezer URLs. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 6f3efb2..5501cdb 100755 --- a/main.py +++ b/main.py @@ -204,7 +204,7 @@ class SubmissionLinkGenerator: @staticmethod def generate_harmony_link(deezer_url: str) -> str: """Generate a Harmony submission link from a Deezer URL""" - return f"https://harmony.pulsewidth.org.uk/?url={quote(deezer_url, safe='')}" + return f"https://harmony.pulsewidth.org.uk/release?url={quote(deezer_url, safe='')}" @staticmethod def generate_links(deezer_url: str) -> Dict[str, str]: