1
0
Fork 0
mirror of synced 2024-05-19 20:12:30 +12:00

Replaced slashes with a space to not confuse URL's

This commit is contained in:
Phxntxm 2017-05-12 17:53:25 -05:00
parent d792f1d648
commit 7abcbe45d0

View file

@ -345,6 +345,7 @@ class Music:
return
song = re.sub('[<>\[\]]', '', song)
song = re.sub('[\\\/]', '', song)
try:
entry = await self.add_entry(song, ctx)