Commit a618ad4e authored by Anael Beutot's avatar Anael Beutot
Browse files

Fixed rpc_authenticated property on MainLoop.

parent 56690e11
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -199,7 +199,7 @@ class MainLoop(object):

    @property
    def rpc_authenticated(self):
        return self.rpc_connected and self.connect is None
        return self.rpc_connected and self.role is not None

    # RPC handlers definitions
    @threadless