Commit 49bcef10 authored by Leonardo Aramaki's avatar Leonardo Aramaki

Fix - mentions were being fetch from favorites instead of the mentions table.

parent 5a472099
......@@ -159,7 +159,7 @@ abstract class MessageDao {
internal fun retrieveFullMessage(message: PartialMessage): FullMessage {
val favorites = getFavoritesByMessage(message.message.id)
val mentions = getFavoritesByMessage(message.message.id)
val mentions = getMentionsByMessage(message.message.id)
return FullMessage(message, favorites, mentions)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment