We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7991833 commit 1f48c26Copy full SHA for 1f48c26
src/classes/Standardizer/plugins/Google/getters/getContacts.ts
@@ -9,7 +9,7 @@ const CONTACT_FILE_VCF = 'Takeout/Contacts/Tous les contacts/Tous les contacts.v
9
Google.prototype.getContacts = withAutoParser(async parser => {
10
if (!(await parser.filesExist([CONTACT_FILE_VCF]))) {
11
const rawContacts = await parser.parseAsCSV(CONTACT_FILE_CSV)
12
- const contacts: Contact[] = rawContacts.map((contact): Contact => ({
+ const contacts: Contact[] = rawContacts.data.map((contact): Contact => ({
13
displayName: contact?.Name,
14
firstName: contact['Given Name'],
15
lastName: contact['Family Name'],
0 commit comments