Description
In JsonDbOpensocialService's getPeople call, there is an old way of reading the $fields parameter. It checks for $fields[0] which throws a notice since $fields is an associative array nowadays. Also, there is a nice self::adjustFields method that can be used to filter the fields.
I've adjusted getFields to use self::adjustFields, which also removes the missing index notice. I'll attach the patch.