1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-30 20:04:26 +02:00

Add route scopes #202

This commit is contained in:
Nikolay Kim
2018-04-29 19:35:50 -07:00
parent aa757a5be8
commit 368730f5f1
5 changed files with 53 additions and 10 deletions

View File

@ -388,11 +388,7 @@ where
}
}
Err(e) => {
return if e.kind() == io::ErrorKind::WouldBlock {
false
} else {
true
};
return e.kind() == io::ErrorKind::WouldBlock;
}
}
}