[4] actually fix - git

This commit is contained in:
meisnate12 2024-04-26 13:49:27 -04:00
parent 9ac1145a5a
commit 599b54d1d2
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
2.0.0-develop3 2.0.0-develop4

View file

@ -68,7 +68,7 @@ class GitHub:
def config_tags(self): def config_tags(self):
if not self._config_tags: if not self._config_tags:
try: 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: except TypeError:
pass pass
return self._config_tags return self._config_tags