mirror of
git://git.acid.vegas/scroll.git
synced 2024-11-07 08:46:45 +00:00
Fixed incorrect path when playing art from the root directory
This commit is contained in:
parent
d714469d98
commit
a67d02291e
@ -253,8 +253,9 @@ class Bot():
|
||||
query = args[1]
|
||||
results = [dir+'/'+ascii for dir in self.db for ascii in self.db[dir] if query == ascii]
|
||||
if results:
|
||||
results = results[0].replace('root/','')
|
||||
self.playing = True
|
||||
self.loops[chan] = asyncio.create_task(self.play(chan, results[0]))
|
||||
self.loops[chan] = asyncio.create_task(self.play(chan, results))
|
||||
else:
|
||||
await self.irc_error(chan, 'no results found', query)
|
||||
except (UnicodeDecodeError, UnicodeEncodeError):
|
||||
|
Loading…
Reference in New Issue
Block a user