fix: Update API base URL by removing trailing segment for correct endpoint usage

This commit is contained in:
Slipstream 2025-05-21 11:59:23 -06:00
parent c6ad3aeae0
commit bcc42664d0
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -69,7 +69,7 @@ class UploadCog(commands.Cog, name="Upload"):
def __init__(self, bot: commands.Bot):
self.bot = bot
# Remove trailing "/upload" from base URL as it's already part of the endpoint paths
self.api_base_url = "https://upload.slipstreamm.dev"
self.api_base_url = "https://slipstreamm.dev"
self.session = None
self.captcha_cache = {} # Store captcha IDs temporarily
self.headers = {