1
0
Fork 0
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:
Heinz Gies 2019-09-11 17:23:59 +02:00 committed by Heinz N. Gies
parent 75b01c802c
commit 4b170ad4dc

View file

@ -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"))