diff --git a/dislocker_slash.py b/dislocker_slash.py index 8b77e51..c19a2bd 100644 --- a/dislocker_slash.py +++ b/dislocker_slash.py @@ -75,14 +75,13 @@ class DL(): print("log ディレクトリが見つかりません... 作成します。") os.mkdir(self.log_dir_path) - if type(self.server_config["bot"]["log_channel_id"]) is not int or type(self.server_config["bot"]["config_channel_id"]) is not int: - print("config ファイル内でチャンネルIDがint型で記述されていません。int型で記述して、起動してください。") - self.init_result = "not_int" - if os.path.isfile(self.onetime_config_path): print("ワンタイムパスワードが見つかりました。削除します。") os.remove(self.onetime_config_path) + if type(self.server_config["bot"]["log_channel_id"]) is not int or type(self.server_config["bot"]["config_channel_id"]) is not int: + print("config ファイル内でチャンネルIDがint型で記述されていません。int型で記述して、起動してください。") + self.init_result = "not_int" else: self.db = psycopg2.connect(f"host={self.server_config['db']['host']} dbname={self.server_config['db']['db_name']} port={self.server_config['db']['port']} user={self.server_config['db']['username']} password={self.server_config['db']['password']}") cursor = self.db.cursor() @@ -923,7 +922,7 @@ async def on_ready(): await client.change_presence(activity=dislocker_activity) @client.event -async def on_message(self, message): +async def on_message(message): if message.author.bot: pass