added fallback for GXS GroupMessage UI to look into cached distant group data

This commit is contained in:
csoler 2018-06-26 22:20:02 +02:00
parent a5d1a154a4
commit 00dfa0f3c2
No known key found for this signature in database
GPG key ID: 7BCA522266C0804C
10 changed files with 96 additions and 10 deletions

View file

@ -40,6 +40,8 @@
*/
struct RsGxsGroupSummary
{
RsGxsGroupSummary() : publish_ts(0), number_of_messages(0),last_message_ts(0),sign_flags(0),popularity(0) {}
RsGxsGroupId group_id ;
std::string group_name ;
@ -49,6 +51,8 @@ struct RsGxsGroupSummary
time_t publish_ts ;
uint32_t number_of_messages ;
time_t last_message_ts ;
uint32_t sign_flags ;
uint32_t popularity ;
};