Skip to content

Commit

Permalink
run: don't default to disabling startup message
Browse files Browse the repository at this point in the history
  • Loading branch information
ihaveamac committed Dec 12, 2020
1 parent a2bbbc3 commit 7559c4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from typing import List, Optional, Tuple


version = '1.3.3'
version = '1.3.4'

is_docker = environ.get('IS_DOCKER', 0)
data_dir = environ.get('MODMAIL_DATA_DIR', '.')
Expand Down Expand Up @@ -55,7 +55,7 @@
config = configparser.ConfigParser()
config.read(join(data_dir, 'config.ini'))

post_startup_message = config['Main'].getboolean('post_startup_message', fallback=False)
post_startup_message = config['Main'].getboolean('post_startup_message', fallback=True)

intents = discord.Intents(guilds=True, members=True, messages=True, dm_typing=True)

Expand Down

0 comments on commit 7559c4a

Please sign in to comment.