Skip to content

Commit 6867e4f

Browse files
committed
[grid] Taking into account BiDi url matches too
1 parent 7b7c7dd commit 6867e4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/org/openqa/selenium/grid/node/ProxyNodeWebsockets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public Optional<Consumer<Message>> apply(String uri, Consumer<Message> downstrea
6969
UrlTemplate.Match bidiMatch = BIDI_TEMPLATE.match(uri);
7070
UrlTemplate.Match vncMatch = VNC_TEMPLATE.match(uri);
7171

72-
if (cdpMatch == null && vncMatch == null && fwdMatch == null) {
72+
if (bidiMatch == null && cdpMatch == null && vncMatch == null && fwdMatch == null) {
7373
return Optional.empty();
7474
}
7575

0 commit comments

Comments
 (0)