Skip to content

Commit

Permalink
Fix connection IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
voctory committed Jan 25, 2025
1 parent f8ee2fb commit 30d681f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/interactions/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const handleConnection = async (userID, connID, timestamp) => {

const userPut = {
userID: userData.id,
obfuscatedID: connID,
obfuscatedID: connData.profileID,
"eventID;year": CURRENT_EVENT,
createdAt: timestamp,
...(connData.linkedin
Expand Down Expand Up @@ -134,7 +134,7 @@ export const handleConnection = async (userID, connID, timestamp) => {

const connPut = {
userID: connData.id,
obfuscatedID: userID,
obfuscatedID: userData.profileID,
"eventID;year": CURRENT_EVENT,
createdAt: timestamp,
...(userData.linkedin
Expand Down

0 comments on commit 30d681f

Please sign in to comment.