Add missing dot in query parameter (#10581)

So that emails from other users are not exposed.
This commit is contained in:
Timo Schneider
2019-06-17 18:38:05 +02:00
committed by Ben Newman
parent efc8a3525d
commit ee09e22bde

View File

@@ -50,7 +50,7 @@ if (Meteor.isClient) {
Google.whitelistedFields.filter(
field => field !== 'email' && field !== 'verified_email'
).map(
subfield => `services.google${subfield}`
subfield => `services.google.${subfield}`
),
});
}