Changeset 456 in code for trunk/downstream.go
- Timestamp:
- Mar 5, 2021, 8:53:59 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/downstream.go
r452 r456 1760 1760 return ircError{&irc.Message{ 1761 1761 Command: irc.ERR_UNKNOWNCOMMAND, 1762 Params: []string{dc.nick, subcommand, "Unknown command"},1762 Params: []string{dc.nick, "CHATHISTORY", "Unknown command"}, 1763 1763 }} 1764 1764 } … … 1774 1774 return ircError{&irc.Message{ 1775 1775 Command: "FAIL", 1776 Params: []string{"CHATHISTORY", " UNKNOWN_CRITERIA", criteria, "Unknown criteria"},1776 Params: []string{"CHATHISTORY", "INVALID_PARAMS", subcommand, criteria, "Unknown criteria"}, 1777 1777 }} 1778 1778 } … … 1782 1782 return ircError{&irc.Message{ 1783 1783 Command: "FAIL", 1784 Params: []string{"CHATHISTORY", "INVALID_ CRITERIA", criteria, "Invalid criteria"},1784 Params: []string{"CHATHISTORY", "INVALID_PARAMS", subcommand, criteria, "Invalid criteria"}, 1785 1785 }} 1786 1786 } … … 1790 1790 return ircError{&irc.Message{ 1791 1791 Command: "FAIL", 1792 Params: []string{"CHATHISTORY", "INVALID_ LIMIT", limitStr, "Invalid limit"},1792 Params: []string{"CHATHISTORY", "INVALID_PARAMS", subcommand, limitStr, "Invalid limit"}, 1793 1793 }} 1794 1794 }
Note:
See TracChangeset
for help on using the changeset viewer.