Disable rebind-on-float until a solid fix

Mitigates #75
This commit is contained in:
Davide De Rosa 2019-03-25 10:09:09 +01:00
parent 71d54e2dc3
commit 9c0205614b
1 changed files with 4 additions and 1 deletions

View File

@ -260,7 +260,10 @@ public class SessionProxy {
- Returns: `true` if supports link rebinding.
*/
public func canRebindLink() -> Bool {
return (pushReply?.peerId != nil)
// return (pushReply?.peerId != nil)
// XXX: floating is currently unreliable
return false
}
/**