ソースを参照

Fix method name

Alex Taber 6 年 前
コミット
daac622c9c
共有1 個のファイルを変更した2 個の追加2 個の削除を含む
  1. 2
    2
      app.py

+ 2
- 2
app.py ファイルの表示

@@ -29,7 +29,7 @@ matrix_room = matrix_client.join_room(matrix_room_id)
29 29
 
30 30
 matrix_file_types = ('m.file', 'm.image', 'm.video', 'm.audio')
31 31
 
32
-def prepare_matrix_client(message):
32
+def prepare_matrix_content(message):
33 33
 	attachments = "\n".join([x.url for x in message.attachments])
34 34
 	content = message.clean_content + ("\n" + attachments if attachments != "" else "")
35 35
 	return content
@@ -38,7 +38,7 @@ def prepare_matrix_client(message):
38 38
 async def on_message(message):
39 39
 	if message.author.discriminator == "0000" or message.channel.id != discord_channel: return
40 40
 	username = message.author.name[:1] + "\u200B" + message.author.name[1:] + "#" + message.author.discriminator
41
-	content = prepare_matrix_client(message)
41
+	content = prepare_matrix_content(message)
42 42
 	matrix_room.send_text("<{}> {}".format(username, content))
43 43
 
44 44
 def send_webhook(username, avatar_url, content):