diff options
author | Jan Holesovsky <kendy@collabora.com> | 2017-04-24 18:37:03 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-04-24 20:07:37 +0200 |
commit | faf02e3d373c9a34c0451615e6c0f6e194cb8995 (patch) | |
tree | e0ef8d32044e44727525ed07f54eb1beae3db2b5 | |
parent | 65ce26fe1433206af3a4eb5172409ff9e575a8ef (diff) |
inactive: Replay the state payload, not the only the value.
We need to replay 'client-0054 statechanged: .uno:StateWordCount=5 words, 30 characters',
not 'client-0054 statechanged: 5 words, 30 characters'.
Change-Id: Ifd1fc7d6d567bcf209dffdd826400f5a5248aa7e
Reviewed-on: https://gerrit.libreoffice.org/36905
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r-- | kit/ChildSession.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kit/ChildSession.cpp b/kit/ChildSession.cpp index 97a384a7b..373d451ff 100644 --- a/kit/ChildSession.cpp +++ b/kit/ChildSession.cpp @@ -1006,7 +1006,7 @@ void ChildSession::rememberEventsForInactiveUser(const int type, const std::stri if (LOOLProtocol::parseNameValuePair(payload, name, value, '=')) { auto lock(getLock()); - _stateRecorder.recordState(name, value); + _stateRecorder.recordState(name, payload); } } } |