Browse Source

key x log

docker-workflow-build
Evan Feenstra 4 years ago
parent
commit
11017659c1
  1. 1
      dist/src/helpers.js
  2. 2
      dist/src/helpers.js.map
  3. 2
      src/helpers.ts

1
dist/src/helpers.js

@ -55,6 +55,7 @@ exports.sendContactKeys = ({ type, contactIds, sender, success, failure, dontAct
if (!(contact && contact.publicKey))
return;
destination_key = contact.publicKey;
console.log("=> KEY EXCHANGE", msg);
exports.performKeysendMessage({
sender,
destination_key,

2
dist/src/helpers.js.map

File diff suppressed because one or more lines are too long

2
src/helpers.ts

@ -49,6 +49,8 @@ export const sendContactKeys = async ({ type, contactIds, sender, success, failu
const contact = await models.Contact.findOne({ where: { id: contactId } })
if(!(contact && contact.publicKey)) return
destination_key = contact.publicKey
console.log("=> KEY EXCHANGE", msg)
performKeysendMessage({
sender,
destination_key,

Loading…
Cancel
Save