Compare commits
2 commits
973d10aa2a
...
a9b798171a
Author | SHA1 | Date | |
---|---|---|---|
a9b798171a | |||
66a7f5f3bc |
3 changed files with 3 additions and 3 deletions
|
@ -2,8 +2,8 @@
|
|||
|
||||
set -e
|
||||
|
||||
# If there's a prestart.sh script in the /app directory, run it before starting
|
||||
PRE_START_PATH=/app/prestart.sh
|
||||
# If there's a init.sh script in the /app directory, run it before starting
|
||||
PRE_START_PATH=/app/init.sh
|
||||
if [ -f $PRE_START_PATH ] ; then
|
||||
. "$PRE_START_PATH"
|
||||
else
|
||||
|
|
|
@ -90,7 +90,7 @@ async def now(ctx):
|
|||
playhead = await query_playhead()
|
||||
stream_name = playhead['name']
|
||||
stream_prio = playhead['prio']
|
||||
await ctx.channel.send(f'Now playing {stream_name})')
|
||||
await ctx.channel.send(f'Now playing {stream_name}')
|
||||
|
||||
@bot.command(name='rec', help='Start the recorder')
|
||||
@has_role(boss_role_name)
|
||||
|
|
Loading…
Add table
Reference in a new issue