You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
8.98: fixed a bug where servers would send ERR_UNKNOWNCOMMAND after incoming numerics which were being sent due to the recent changes that allow numerics to be fired on connection objects.
numerics are no longer sent to servers (not with the server as the target anyway).
servers now do not send ERR_UNKNOWNCOMMAND to other registered servers, and all incoming numerics are ignored.
Copy file name to clipboardExpand all lines: INDEV
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2506,10 +2506,10 @@ CHANGES:
2506
2506
2507
2507
94. moved the remainder of the command handlers to the new API.
2508
2508
removed the hideous old parameter parser.
2509
-
RPL_UNKNOWNCOMMAND is now an event callback that is canceled by handler wrappers.
2509
+
ERR_UNKNOWNCOMMAND is now an event callback that is canceled by handler wrappers.
2510
2510
2511
2511
95. updated Fantasy for the new evented command handler.
2512
-
fixed an issue where parameter parser errors would lead to RPL_UNKNOWNCOMMAND.
2512
+
fixed an issue where parameter parser errors would lead to ERR_UNKNOWNCOMMAND.
2513
2513
fixed a vulnerability where commands using echo or PRIVMSG could trigger additional fantasy commands.
2514
2514
2515
2515
96. message object ->source now automatically determines source object.
@@ -2519,6 +2519,10 @@ CHANGES:
2519
2519
97. silently ignore unhandled numerics from servers.
2520
2520
removed the matcher identifier code as it was unused and causing problems for the '...' (synonymous with @rest) modifier.
2521
2521
2522
+
98. fixed a bug where servers would send ERR_UNKNOWNCOMMAND after incoming numerics which were being sent due to the recent changes that allow numerics to be fired on connection objects.
2523
+
numerics are no longer sent to servers (not with the server as the target anyway).
2524
+
servers now do not send ERR_UNKNOWNCOMMAND to other registered servers, and all incoming numerics are ignored.
0 commit comments