mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-23 13:54:27 -04:00
Fix missing call to RsEvent serialization in RsGxsChanges
This commit is contained in:
parent
5dc340d884
commit
5381f58707
1 changed files with 2 additions and 1 deletions
|
@ -91,6 +91,7 @@ struct RsGxsChanges : RsEvent
|
||||||
void serial_process( RsGenericSerializer::SerializeJob j,
|
void serial_process( RsGenericSerializer::SerializeJob j,
|
||||||
RsGenericSerializer::SerializeContext& ctx) override
|
RsGenericSerializer::SerializeContext& ctx) override
|
||||||
{
|
{
|
||||||
|
RsEvent::serial_process(j,ctx);
|
||||||
RS_SERIAL_PROCESS(mServiceType);
|
RS_SERIAL_PROCESS(mServiceType);
|
||||||
RS_SERIAL_PROCESS(mMsgs);
|
RS_SERIAL_PROCESS(mMsgs);
|
||||||
RS_SERIAL_PROCESS(mMsgsMeta);
|
RS_SERIAL_PROCESS(mMsgsMeta);
|
||||||
|
@ -99,7 +100,7 @@ struct RsGxsChanges : RsEvent
|
||||||
RS_SERIAL_PROCESS(mDistantSearchReqs);
|
RS_SERIAL_PROCESS(mDistantSearchReqs);
|
||||||
}
|
}
|
||||||
|
|
||||||
RsTokenService* mService; // Weak pointer, not serialized
|
RsTokenService* mService; /// Weak pointer, not serialized
|
||||||
};
|
};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue