You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 13, 2024. It is now read-only.
1027 var path = CFURLCopyPath(req.url! as CFURL!) as String
//Using '!' in this location is deprecated and will be removed in a future release; consider changing this to '?' instead
1061 CFStreamCreatePairWithSocketToHost(nil, addr[0] as CFString!, UInt32(Int(addr[1])!), &readStream, &writeStream);
//; is not needed //Using '!' in this location is deprecated and will be removed in a future release; consider changing this to '?' instead
1147 key = trim(line.substring(to: r.lowerBound))
// 'substring(to:)' is deprecated: Please use String slicing subscript with a 'partial range upto' operator.
1148 value = trim(line.substring(from: r.upperBound))
//'substring(from:)' is deprecated: Please use String slicing subscript with a 'partial range from' operator.
The text was updated successfully, but these errors were encountered:
This is because of tidwall/SwiftWebSocket#118 which prevents porjects depending on SwiftWebSocket from being pushed to CocoaPods
Opened tidwall/SwiftWebSocket#122. Once the PR is merged and a new version is released this change should be reversed.
1027 var path = CFURLCopyPath(req.url! as CFURL!) as String
//Using '!' in this location is deprecated and will be removed in a future release; consider changing this to '?' instead
1061 CFStreamCreatePairWithSocketToHost(nil, addr[0] as CFString!, UInt32(Int(addr[1])!), &readStream, &writeStream);
//; is not needed //Using '!' in this location is deprecated and will be removed in a future release; consider changing this to '?' instead
1147 key = trim(line.substring(to: r.lowerBound))
// 'substring(to:)' is deprecated: Please use String slicing subscript with a 'partial range upto' operator.
1148 value = trim(line.substring(from: r.upperBound))
//'substring(from:)' is deprecated: Please use String slicing subscript with a 'partial range from' operator.
The text was updated successfully, but these errors were encountered: