fix: correct context field reference in handleMessage

This commit is contained in:
2025-08-16 22:23:33 -04:00
parent 6c04646b79
commit ddb60b7ae1

View File

@@ -43,9 +43,9 @@ func (a *A) HandleMessage(msg, authedPubkey []byte) {
}
switch t {
case eventenvelope.L:
notice = a.HandleEvent(a.Context(), rem, a.I)
notice = a.HandleEvent(a.Ctx, rem, a.I)
case reqenvelope.L:
notice = a.HandleReq(a.Context(), rem, a.I)
notice = a.HandleReq(a.Ctx, rem, a.I)
case closeenvelope.L:
notice = a.HandleClose(rem, a.I)
case authenvelope.L: