Commit 261529c8 authored by Antoine Millet's avatar Antoine Millet
Browse files

Pure listing now update tags to show before to return.

parent 24745b70
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -283,13 +283,13 @@ class CCServer(object):
        if ast is not None:
            objects, _ = ast.eval(objects, objects)

        if pure:
            return objects

        ids = [x['id'] for x in objects]

        objects = self.objects.some(ids, to_show)

        if pure:
            return objects
            
        objects_dicts = []
        
        for obj in objects: