From 211fe040dde683e9ee1c1a8c8b9c2fe347a1ad20 Mon Sep 17 00:00:00 2001
From: "Richard T. Carback III" <rick.carback@gmail.com>
Date: Wed, 25 May 2022 19:12:18 +0000
Subject: [PATCH] Disable requests for sr's that already exist

---
 auth/confirm.go | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/auth/confirm.go b/auth/confirm.go
index d95658078..c3c84fee6 100644
--- a/auth/confirm.go
+++ b/auth/confirm.go
@@ -120,7 +120,9 @@ func (s *state) confirm(partner contact.Contact, serviceTag string) (
 			s.event.Report(10, "Auth", "SendConfirmError", em)
 		}
 
-		s.backupTrigger("confirmed authenticated channel")
+		if s.backupTrigger != nil {
+			s.backupTrigger("confirmed authenticated channel")
+		}
 
 		jww.INFO.Printf("Confirming Auth from %s to %s, msgDigest: %s",
 			partner.ID, s.e2e.GetReceptionID(),
-- 
GitLab