diff --git a/core/misc.py b/core/misc.py index a9d523c..5f84261 100755 --- a/core/misc.py +++ b/core/misc.py @@ -80,6 +80,7 @@ def is_spotify(raw_song): def sanitize_title(title): """Generate filename of the song to be downloaded.""" title = title.replace(' ', '_') + title = title.replace('/', '_') # slugify removes any special characters title = slugify(title, ok='-_()[]{}', lower=False)