Skip to content

Commit

Permalink
nulll check
Browse files Browse the repository at this point in the history
  • Loading branch information
sinamics committed Mar 11, 2024
1 parent 5cb1579 commit 9651710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/api/services/memberService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const syncMemberPeersAndStatus = async (
const updatedMember = {
...restOfDbMembers,
...ztMember,
physicalAddress: activePreferredPath.address ?? physicalAddress,
physicalAddress: activePreferredPath?.address ?? physicalAddress,
peers,
} as MemberEntity;

Expand Down

0 comments on commit 9651710

Please sign in to comment.