mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-26 22:00:27 +00:00
Fix regular expression check for "OK". The regex had a bad format: not sure how it could have worked for anyone.
This commit is contained in:
parent
9621019c77
commit
6c6faff416
1 changed files with 1 additions and 1 deletions
|
@ -725,7 +725,7 @@
|
|||
"errorType": "message",
|
||||
"errorMsg": "This page does not exist on OK",
|
||||
"rank": 1,
|
||||
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-.]*$",
|
||||
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_.-]*$",
|
||||
"url": "https://ok.ru/{}",
|
||||
"urlMain": "https://ok.ru/",
|
||||
"username_claimed": "ok",
|
||||
|
|
Loading…
Reference in a new issue