From f6487ea1bc0f31a85f3e08ae69f79ce4851703bc Mon Sep 17 00:00:00 2001 From: Mark van Alphen Date: Sun, 29 Oct 2017 16:10:02 +0100 Subject: [PATCH] [Audio] Fixed repeat queue (#1013) --- cogs/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/audio.py b/cogs/audio.py index 0c2885acc..d64014b3e 100644 --- a/cogs/audio.py +++ b/cogs/audio.py @@ -2177,7 +2177,7 @@ class Audio: return if repeat and last_song: queued_last_song = QueuedSong(last_song.webpage_url, last_song_channel) - queue.append(last_song.webpage_url) + queue.append(queued_last_song) else: song = None self._set_queue_nowplaying(server, song, channel)