1
0
Fork 0
mirror of synced 2024-07-07 07:15:43 +12:00

Fix for privatekey newline

This commit is contained in:
Mel O'Hagan 2022-06-10 14:15:25 +01:00
parent dc28d685a8
commit 1155b9acdf

View file

@ -95,7 +95,7 @@ module Firebase {
projectId: config.projectId,
credentials: {
client_email: config.email,
private_key: config.privateKey,
private_key: config.privateKey?.replace(/\\n/g, "\n"),
},
})
}