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
fix(binding-mqtt): replace ?? with || for mqv:filter and mqv:topic fallback
The nullish coalescing operator (??) only triggers on null or undefined,
not on empty strings. When the URL path is '/', pathname.slice(1) returns
'' which is falsy but not null/undefined, causing mqv:filter and mqv:topic
to be silently ignored.
Fixes#1508
0 commit comments