diff --git a/lib/shared/messages/update-relationship-message-spec.js b/lib/shared/messages/update-relationship-message-spec.js
--- a/lib/shared/messages/update-relationship-message-spec.js
+++ b/lib/shared/messages/update-relationship-message-spec.js
@@ -93,6 +93,21 @@
       | RawLegacyUpdateRelationshipMessageInfo
       | RawUpdateRelationshipMessageInfo {
       const content = JSON.parse(row.content);
+
+      if (content.operation === 'farcaster_mutual') {
+        return {
+          type: row.type,
+          id: row.id.toString(),
+          threadID: row.threadID.toString(),
+          time: row.time,
+          creatorID: row.creatorID.toString(),
+          targetID: content.targetID,
+          operation: content.operation,
+          creatorFID: content.creatorFID,
+          targetFID: content.targetFID,
+        };
+      }
+
       return {
         type: row.type,
         id: row.id.toString(),