diff --git a/royalnet/commands/dlmusic.py b/royalnet/commands/dlmusic.py index 91f316a4..33348afe 100644 --- a/royalnet/commands/dlmusic.py +++ b/royalnet/commands/dlmusic.py @@ -28,7 +28,7 @@ class DlmusicCommand(Command): else: vfiles = await asyncify(YtdlVorbis.create_and_ready_from_url, f"ytsearch:{url}", **ytdl_args) for vfile in vfiles: - await call.reply(f"⬇️ https://scaleway.steffo.eu/{urllib.parse.quote(vfile.vorbis_filename.replace('./downloads/', 'musicbot_cache/'))}") + await call.reply(f"⬇️ https://scaleway.steffo.eu/{urllib.parse.quote(vfile.vorbis_filename.replace('./downloads/', './musicbot_cache/'))}") await asyncio.sleep(seconds_before_deletion) for vfile in vfiles: vfile.delete()