Message Format
The integration now provides two ways to access message information:
- Legacy format (maintained for compatibility):
event_data:
message: "The message content"
sender: "Nick!user@host"
channel: "#channel"
type: "public"- New structured format:
event_data:
message: "The message content"
sender: "Nick!user@host" # Maintained for compatibility
nick: "Nick"
host: "user@host"
channel: "#channel"
type: "public"
timestamp: "HH:MM:SS"Full Changelog: v1.1.0...v1.1.1