Shows audio in the attachments list
This commit is contained in:
		| @@ -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): | ||||
|   | ||||
| @@ -118,11 +118,11 @@ def compose_status(status, session): | ||||
| 			message = "no description available" | ||||
| 	return [user, message, created_at] | ||||
|  | ||||
| def compose_audio(audio, session): | ||||
| def compose_audio(audio, session=None): | ||||
| 	if audio == False: return [_(u"Audio removed from library"), "", ""] | ||||
| 	return [audio["title"], audio["artist"], utils.seconds_to_string(audio["duration"])] | ||||
|  | ||||
| def compose_video(video, session): | ||||
| def compose_video(video, session=None): | ||||
| 	if video == False: return [_(u"Audio removed from library"), "", ""] | ||||
| 	return [video["title"], utils.seconds_to_string(video["duration"])] | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user