Skip to content

Commit 4c017ec

Browse files
committed
chrome: fix shimMaxMessageSize guard
where the native fix shipped in M149 so this is off by one https://chromiumdash.appspot.com/commit/dfbbc3f33b342de4b102713be409ee0e4d188a1c
1 parent e470d07 commit 4c017ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/js/common_shim.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ export function shimSendThrowTypeError(window, browserDetails) {
253253
'createDataChannel' in window.RTCPeerConnection.prototype)) {
254254
return;
255255
}
256-
if (browserDetails.browser === 'chrome' && browserDetails.version > 149) {
256+
if (browserDetails.browser === 'chrome' && browserDetails.version >= 149) {
257257
// Fixed by https://issues.chromium.org/issues/490588131
258258
return;
259259
}

0 commit comments

Comments
 (0)