mirror of
https://github.com/actix/actix-web.git
synced 2025-04-06 10:09:44 +00:00
Remove depricated function call
This commit is contained in:
parent
75b01c802c
commit
4b170ad4dc
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ impl WebsocketsRequest {
|
|||
|
||||
if !self.head.headers.contains_key(header::HOST) {
|
||||
let port = uri.port_u16();
|
||||
let scheme = uri.scheme();
|
||||
let scheme = uri.scheme_str();
|
||||
// https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
|
||||
// requires us to include the port if it's not standard
|
||||
let needs_port = ((scheme == Some("http") || scheme == Some("ws"))
|
||||
|
|
Loading…
Reference in a new issue