refactor: improve code readability and consistency across multiple files
This commit is contained in:
@@ -51,7 +51,7 @@ impl<R: SessionRepository, L: SessionLockRepository>
|
||||
{
|
||||
fn create_session(&self, title: &str) -> Result<Session, ServiceError> {
|
||||
let id = SessionId::new(&Uuid::new_v4().to_string())
|
||||
.map_err(|e| ServiceError::Other(e))?;
|
||||
.map_err(ServiceError::Other)?;
|
||||
let title_owned = if title.is_empty() {
|
||||
"New Session".to_string()
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user