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
Describe the bug
Failed to construct 'Headers': No matching constructor signature. On Chrome 56m. This is uniquely an old browser issue where it cannot construct headers when its one parameter is undefined. An easy fix is to replace any new Headers(possibleUndefined) with new Headers(possibleUndefined ?? {}).
An alternative solution is to add headers to the GrpcWebTransportOptions allowing someone to override the default behavior.
To Reproduce
Failed to construct 'Headers': No matching constructor signature.
This issue is specific to chrome 56m, may even be specific to a Samsung TV.
Describe the bug
Failed to construct 'Headers': No matching constructor signature. On Chrome 56m. This is uniquely an old browser issue where it cannot construct headers when its one parameter is undefined. An easy fix is to replace any
new Headers(possibleUndefined)
withnew Headers(possibleUndefined ?? {})
.An alternative solution is to add headers to the GrpcWebTransportOptions allowing someone to override the default behavior.
same issue from a diff repo
To Reproduce
Failed to construct 'Headers': No matching constructor signature.
This issue is specific to chrome 56m, may even be specific to a Samsung TV.
Environment (please complete the following information):
Additional context
undefined headers
The text was updated successfully, but these errors were encountered: