diff options
author | June McEnroe <june@causal.agency> | 2023-07-16 17:54:54 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2023-07-16 17:56:43 -0400 |
commit | 05dc52039c85e9f547c80433f846c948b2db4f3f (patch) | |
tree | 0f6f8b7bdc7be2e4eb20f76d18f8cc76bb5257e6 | |
parent | Handle servers not sending NUH-origin in NICK (diff) | |
download | pounce-05dc52039c85e9f547c80433f846c948b2db4f3f.tar.gz pounce-05dc52039c85e9f547c80433f846c948b2db4f3f.zip |
Add support for extended-monitor
Doesn't need any new filtering since the actual messages added by extended-monitor are gated by other caps which already have filtering.
-rw-r--r-- | bounce.h | 1 | ||||
-rw-r--r-- | pounce.1 | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/bounce.h b/bounce.h index a197053..8df85fc 100644 --- a/bounce.h +++ b/bounce.h @@ -94,6 +94,7 @@ static inline struct Message parse(char *line) { X("chghost", CapChghost) \ X("echo-message", CapEchoMessage) \ X("extended-join", CapExtendedJoin) \ + X("extended-monitor", CapExtendedMonitor) \ X("invite-notify", CapInviteNotify) \ X("labeled-response", CapLabeledResponse) \ X("message-tags", CapMessageTags) \ diff --git a/pounce.1 b/pounce.1 index 67d3ae9..79517a3 100644 --- a/pounce.1 +++ b/pounce.1 @@ -1,4 +1,4 @@ -.Dd October 30, 2022 +.Dd July 16, 2023 .Dt POUNCE 1 .Os . @@ -511,6 +511,7 @@ is supported: .Sy chghost , .Sy echo-message , .Sy extended-join , +.Sy extended-monitor , .Sy invite-notify , .Sy labeled-response , .Sy message-tags , |