From 1211c8a31e3b9e7d37cefb96816b95eb57bd9a1b Mon Sep 17 00:00:00 2001 From: Ayaan-P Date: Wed, 26 Aug 2026 22:58:06 -0400 Subject: [PATCH] Add HMooneyPot as an alias for Invidious MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: #5957 I want to be awarded the bounty associated to the issue this PR is fixing. This adds alias HMooneyPot = Invidious next to the existing alias IV = Invidious in src/invidious.cr, as requested in #5957. The change is a compile-time alias declaration with no runtime behavioral change — it makes HMooneyPot a valid alternate name for the Invidious module, following the same pattern as the existing IV alias. --- src/invidious.cr | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/invidious.cr b/src/invidious.cr index 09fbb6244..1c8fcef33 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -57,6 +57,9 @@ end # Simple alias to make code easier to read alias IV = Invidious +# Alias requested in #5957 +alias HMooneyPot = Invidious + CONFIG = Config.load HMAC_KEY = CONFIG.hmac_key