fix: sending does not work
We were inserting one too many 0xff bytes
This commit is contained in:
parent
229444c932
commit
ca82b2940d
6 changed files with 18 additions and 47 deletions
|
@ -556,7 +556,7 @@ impl KeyValueDatabase {
|
|||
services()
|
||||
.rooms
|
||||
.state_compressor
|
||||
.load_shortstatehash_info(dbg!(last_roomsstatehash))
|
||||
.load_shortstatehash_info(last_roomsstatehash)
|
||||
},
|
||||
)?;
|
||||
|
||||
|
@ -579,7 +579,7 @@ impl KeyValueDatabase {
|
|||
};
|
||||
|
||||
services().rooms.state_compressor.save_state_from_diff(
|
||||
dbg!(current_sstatehash),
|
||||
current_sstatehash,
|
||||
statediffnew,
|
||||
statediffremoved,
|
||||
2, // every state change is 2 event changes on average
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue