From c48e1737c0d88c846b349727c4e9e63de0a943a0 Mon Sep 17 00:00:00 2001 From: timedout Date: Thu, 22 Jan 2026 14:55:44 +0000 Subject: [PATCH] error: Add MSC4406 error code --- error.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/error.go b/error.go index 5ff671e0..fd824edc 100644 --- a/error.go +++ b/error.go @@ -77,6 +77,9 @@ var ( MUnredactedContentDeleted = RespError{ErrCode: "FI.MAU.MSC2815_UNREDACTED_CONTENT_DELETED"} MUnredactedContentNotReceived = RespError{ErrCode: "FI.MAU.MSC2815_UNREDACTED_CONTENT_NOT_RECEIVED"} + + // The sender of the requested event is ignored by the requesting user (MSC4406). + UnstableMSenderIgnored = RespError{ErrCode: "UK.TIMEDOUT.MSC4406.SENDER_IGNORED", StatusCode: http.StatusNotFound} ) var (