Compare commits

..

No commits in common. "a9b798171a982b1a93475d19bd5c04167d2a0894" and "973d10aa2a21c180b96b5075afa1656a4339391f" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View file

@ -2,8 +2,8 @@
set -e set -e
# If there's a init.sh script in the /app directory, run it before starting # If there's a prestart.sh script in the /app directory, run it before starting
PRE_START_PATH=/app/init.sh PRE_START_PATH=/app/prestart.sh
if [ -f $PRE_START_PATH ] ; then if [ -f $PRE_START_PATH ] ; then
. "$PRE_START_PATH" . "$PRE_START_PATH"
else else

View file

@ -90,7 +90,7 @@ async def now(ctx):
playhead = await query_playhead() playhead = await query_playhead()
stream_name = playhead['name'] stream_name = playhead['name']
stream_prio = playhead['prio'] 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') @bot.command(name='rec', help='Start the recorder')
@has_role(boss_role_name) @has_role(boss_role_name)