Shows audio in the attachments list

This commit is contained in:
2016-04-04 03:40:42 -05:00
parent 148d4a914d
commit a795eeee4c
2 changed files with 5 additions and 2 deletions

View File

@@ -36,6 +36,9 @@ def add_attachment(attachment):
elif attachment["type"] == "video":
msg = u"{0}".format(attachment["video"]["title"],)
tpe = _(u"Video")
elif attachment["type"] == "audio":
msg = u"{0}".format(" ".join(session.compose_audio(attachment["audio"])))
tpe = _(u"Audio")
return [tpe, msg]
def get_message(status):