Alex Taber 6 лет назад
Родитель
Сommit
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):