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
Actual behaviour:
Using the raw_message event, the RAW IRC message: '@badge-info=;badges=broadcaster/1,premium/1;color=#EC5D0F;display-name=DBKynd;emotes=;flags=;id=91544fb6-4e0a-411f-a379-771aad329f35;mod=0;room-id=59351240;subscriber=0;tmi-sent-ts=1587431682109;turbo=0;user-id=59351240;user-type= :[email protected] PRIVMSG #dbkynd :dirk is great'
gets parsed as
where emotes=;flags=; turns in to emotes: true, flags: true,
This is both on the message and messageCloned objects (for obvious reasons but thought I'd check both just in case)
This same message captured using the message event parses those fields to null
Expected behaviour:
These fields should be parsed as null similarly to how it is done in the message event
Server configuration
Operating system: alpine
Node version (if applicable): v12.15.0
NPM version (if applicable):
tmi.js version: "tmi.js": "^1.5.0",
The text was updated successfully, but these errors were encountered:
I personally wouldn't choose it to be true but at this point I don't want any backwards incompatible changes. Perhaps an option could be added to change an empty tag to something else like null or an empty string (my preference) with true as the default.
Actual behaviour:
Using the
raw_message
event, the RAW IRC message:'@badge-info=;badges=broadcaster/1,premium/1;color=#EC5D0F;display-name=DBKynd;emotes=;flags=;id=91544fb6-4e0a-411f-a379-771aad329f35;mod=0;room-id=59351240;subscriber=0;tmi-sent-ts=1587431682109;turbo=0;user-id=59351240;user-type= :[email protected] PRIVMSG #dbkynd :dirk is great'
gets parsed as
where
emotes=;flags=;
turns in toemotes: true, flags: true,
This is both on the
message
andmessageCloned
objects (for obvious reasons but thought I'd check both just in case)This same message captured using the
message
event parses those fields tonull
Expected behaviour:
These fields should be parsed as
null
similarly to how it is done in the message eventServer configuration
The text was updated successfully, but these errors were encountered: