1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00

Fix disconnect on idle connections

This commit is contained in:
Nikolay Kim 2018-03-02 20:47:23 -08:00
parent 16c05f07ba
commit c2d8abcee7
2 changed files with 3 additions and 1 deletions

View File

@ -8,6 +8,8 @@
* Add csrf middleware for filter for cross-site request forgery #89
* Fix disconnect on idle connections
## 0.4.1 (2018-03-01)

View File

@ -168,7 +168,7 @@ impl Inner {
len: 0,
err: None,
items: VecDeque::new(),
need_read: false,
need_read: true,
}
}