Skip to content

Commit 0064bfa

Browse files
committed
fix blocked issue (regex room name)
1 parent 68b263e commit 0064bfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/webrtc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ <h3 class="join__title">
4545
</div>
4646

4747
<div class="join__row">
48-
<input type="text" class="join__input" name="room" placeholder="Chat room name" required title="Field should contain alphanumeric characters only in a range 3 to 15, without space. The first character must be a letter." pattern="^[a-zA-Z][\w]{2,14}$">
48+
<input type="text" class="join__input" name="room" placeholder="Chat room name" required title="Field should contain alphanumeric characters only in a range 3 to 15, without space. The first character must be a letter." pattern="^[a-zA-Z][a-zA-Z0-9]{2,14}$">
4949
</div>
5050

5151
<div class="join__row">

0 commit comments

Comments
 (0)