Looking back, it wasn't a dash, but rather, an underscore.

This commit is contained in:
George Tsatsis 2020-03-31 04:18:28 +03:00
parent 6b3d3c881a
commit 49ff11da48
No known key found for this signature in database
GPG Key ID: 71F5AD643ABD99A4
1 changed files with 1 additions and 1 deletions

View File

@ -112,4 +112,4 @@ async def _get_guild_banner(guild_id: int, icon_file: str):
@bp.route("/discovery-splashes/<int:guild_id>/<icon_file>", methods=["GET"]) @bp.route("/discovery-splashes/<int:guild_id>/<icon_file>", methods=["GET"])
async def _get_discovery_splash(guild_id: int, icon_file: str): async def _get_discovery_splash(guild_id: int, icon_file: str):
icon_hash, ext = splitext_(icon_file) icon_hash, ext = splitext_(icon_file)
return await send_icon("discovery-splash", guild_id, icon_hash, ext=ext) return await send_icon("discovery_splash", guild_id, icon_hash, ext=ext)