diff --git a/mumble/channel.py b/mumble/channel.py index 4958334..6556a5c 100644 --- a/mumble/channel.py +++ b/mumble/channel.py @@ -24,7 +24,8 @@ class ACL(object): @property def user(self): """Returns the User ID this ACL applies to""" - return self.__acl.userid + if self.__acl.userid != -1: + return self.__acl.userid @property def group(self):