mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 07:53:00 +01:00
stable rust compatibility
This commit is contained in:
parent
fffaf2bb2d
commit
7243c58fce
@ -255,8 +255,8 @@ impl<S> App<S> where S: 'static {
|
||||
mem::transmute(self.parts.as_mut().expect("Use after finish"))};
|
||||
|
||||
// get resource handler
|
||||
for (pattern, handler) in &mut parts.resources {
|
||||
if let Some(ref mut handler) = handler {
|
||||
for &mut (ref pattern, ref mut handler) in &mut parts.resources {
|
||||
if let Some(ref mut handler) = *handler {
|
||||
if pattern.pattern() == path {
|
||||
handler.method(method).with(f);
|
||||
return self
|
||||
|
Loading…
Reference in New Issue
Block a user