feat(message_logger): quoted messages support

This commit is contained in:
rhunk
2024-01-17 17:37:24 +01:00
parent ec0fd2cf08
commit a95c75a0b6
5 changed files with 25 additions and 11 deletions

View File

@ -158,4 +158,13 @@ enum class MixerStoryType(
return entries.firstOrNull { it.index == index } ?: UNKNOWN
}
}
}
enum class QuotedMessageContentStatus {
UNKNOWN,
AVAILABLE,
DELETED,
JOINEDAFTERORIGINALMESSAGESENT,
UNAVAILABLE,
STORYMEDIADELETEDBYPOSTER
}