From 599b54d1d2126cd97f3fa08ffb53dd533a910d65 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Fri, 26 Apr 2024 13:49:27 -0400 Subject: [PATCH] [4] actually fix `- git` --- VERSION | 2 +- modules/github.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 83151ae2..8bfbac71 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.0-develop3 +2.0.0-develop4 diff --git a/modules/github.py b/modules/github.py index 2ee9c3b2..38139e55 100644 --- a/modules/github.py +++ b/modules/github.py @@ -68,7 +68,7 @@ class GitHub: def config_tags(self): if not self._config_tags: try: - self._config_tags = [r["ref"][11:] for r in self._requests(f"{kometa_base}/Community-Configs/git/refs/tags")] + self._config_tags = [r["ref"][11:] for r in self._requests(f"{base_url}/repos/Kometa-Team/Community-Configs/git/refs/tags")] except TypeError: pass return self._config_tags