Skip to content
This repository was archived by the owner on Jan 1, 2021. It is now read-only.

Commit 60eb2eb

Browse files
committed
Fixed: UserId below 8 characters causing issues.
Fixes Radarr/Radarr#2338
1 parent 5b018a2 commit 60eb2eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/Http/Requests/IMDBListRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function rules()
2828
return [
2929
'listId' => array(
3030
"required",
31-
"regex:/((ls)|(ur))\d{8,11}/"
31+
"regex:/((ls)|(ur))\d{1,12}/"
3232
)
3333
];
3434
}

0 commit comments

Comments
 (0)