From 8836bfe6446d498935ba6144eff298f933d2ddc0 Mon Sep 17 00:00:00 2001
From: Benjamin Wenger <ben@elixxir.ioo>
Date: Thu, 21 Oct 2021 16:41:13 -0700
Subject: [PATCH] swapped to the correct fingerprint

---
 network/message/handler.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/network/message/handler.go b/network/message/handler.go
index ee0cc561a..838be7875 100644
--- a/network/message/handler.go
+++ b/network/message/handler.go
@@ -54,7 +54,7 @@ func (m *Manager) handleMessage(ecrMsg format.Message, bundle Bundle, edge *edge
 	var relationshipFingerprint []byte
 
 	//if it exists, check against all in the list
-	has, forMe, _ := m.Session.GetEdge().Check(identity.Source, fingerprint[:], ecrMsg.GetContents())
+	has, forMe, _ := m.Session.GetEdge().Check(identity.Source, ecrMsg.GetIdentityFP(), ecrMsg.GetContents())
 	if !has {
 		jww.INFO.Printf("checking backup %v", preimage.MakeDefault(identity.Source))
 		//if it doesnt exist, check against the default fingerprint for the identity
-- 
GitLab