From fcb7f9c28e07e8d6a770494f4a277704b9c15c9b Mon Sep 17 00:00:00 2001 From: Kedar Sovani Date: Sat, 4 Mar 2023 13:02:25 +0530 Subject: [PATCH] DataModel: Increase the tail buffer, works with Google now --- matter/src/data_model/core/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matter/src/data_model/core/read.rs b/matter/src/data_model/core/read.rs index eb12a5b..c450073 100644 --- a/matter/src/data_model/core/read.rs +++ b/matter/src/data_model/core/read.rs @@ -221,7 +221,7 @@ impl DataModel { // // This is the amount of space we reserve for other things to be attached towards // the end - const RESERVE_SIZE: usize = 18; + const RESERVE_SIZE: usize = 24; let mut new_wb = wb_shrink!(old_wb, RESERVE_SIZE); let mut tw = TLVWriter::new(&mut new_wb);