mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 08:08:10 +08:00
fix(sidebar): use n1_id to verify edgehill server
This commit is contained in:
parent
c0a3452a2e
commit
ebd2973cf9
1 changed files with 2 additions and 2 deletions
|
@ -6,10 +6,10 @@ module.exports = class ClearbitDataSource
|
||||||
return "https://person.clearbit.com/v2/combined"
|
return "https://person.clearbit.com/v2/combined"
|
||||||
|
|
||||||
find: ({email}) ->
|
find: ({email}) ->
|
||||||
tok = AccountStore.tokenForAccountId(AccountStore.accounts()[0].id)
|
n1_id = NylasEnv.config.get('updateIdentity')
|
||||||
new Promise (resolve, reject) =>
|
new Promise (resolve, reject) =>
|
||||||
EdgehillAPI.request
|
EdgehillAPI.request
|
||||||
path: "/proxy/clearbit/#{@clearbitAPI()}/find?email=#{email}&api_token=#{tok}",
|
path: "/proxy/clearbit/#{@clearbitAPI()}/find?email=#{email}&n1_id=#{n1_id}",
|
||||||
success: (body) =>
|
success: (body) =>
|
||||||
resolve(@parseResponse(body))
|
resolve(@parseResponse(body))
|
||||||
error: reject
|
error: reject
|
||||||
|
|
Loading…
Reference in a new issue