We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afe90fe commit f09ae25Copy full SHA for f09ae25
src/utils/helper.js
@@ -33,8 +33,8 @@ async function advancedSearch(searchTerm) {
33
return await DB.searchLensByUuid(uuid);
34
}
35
36
- // lens ID's have 11 digits but we support +/- 1
37
- const regLensId = /^[0-9]{10,12}$/gi;
+ // lens ID's have 11 to 16 digits
+ const regLensId = /^[0-9]{11,16}$/gi;
38
if (regLensId.test(searchTerm)) {
39
return await DB.getSingleLens(searchTerm);
40
0 commit comments