chore: add revision reset helper

This commit is contained in:
appflowy
2022-08-16 11:24:37 +08:00
parent 6b312b4f8f
commit 4683dbee45
17 changed files with 259 additions and 55 deletions

View File

@ -57,7 +57,7 @@ where
match self.into_inner().into_bytes() {
Ok(bytes) => {
log::trace!("Serialize Data: {:?} to event response", std::any::type_name::<T>());
return ResponseBuilder::Ok().data(bytes).build();
ResponseBuilder::Ok().data(bytes).build()
}
Err(e) => e.into(),
}