Commit ab7d921e authored by Antoine Millet's avatar Antoine Millet
Browse files

Fixed bug with $* and special privates tags.

parent b2b07495
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ class ClientHandler(OnlineCCHandler):
            tags += ('id', 'role')
        for obj in objects:
            for key in obj.keys():
                if tags is not None and key not in tags:
                if tags is not None and key not in tags or key.startswith('__'):
                    del obj[key]
            uniq_objects[obj['id']] = obj