From e40a9a609829759df8597547b74615c37c05b02c Mon Sep 17 00:00:00 2001 From: Ushie Date: Sun, 20 Aug 2023 03:06:00 +0300 Subject: [PATCH] hotfix: lowercase api owner --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index 517e5cd..b59ab1f 100644 --- a/config.py +++ b/config.py @@ -5,7 +5,7 @@ redis: dict[str, str | int] = {"host": "localhost", "port": 6379} # GitHub Backend Configuration -owner: str = "ReVanced" +owner: str = "revanced" default_repository: str = ".github" # API Versioning @@ -114,7 +114,7 @@ links: list[dict[str, str | bool]] = [ ] default_info: dict[str, str | list[str | bool] | bool] = { - "name": owner, + "name": "ReVanced", "about": "ReVanced was born out of Vanced's discontinuation and it is our goal to continue the legacy of what Vanced left behind. Thanks to ReVanced Patcher, it's possible to create long-lasting patches for nearly any Android app. ReVanced's patching system is designed to allow patches to work on new versions of the apps automatically with bare minimum maintenance.", "contact": {"email": "contact@revanced.app"}, "socials": social_links,