24
1
Fork 0

fixed isFile for extended file id size

This commit is contained in:
Danny Coates 2019-03-26 09:58:04 -07:00
parent 1ce115c3e9
commit 58b7a17680
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ function loadShim(polyfill) {
}
function isFile(id) {
return /^[0-9a-fA-F]{10}$/.test(id);
return /^[0-9a-fA-F]{10,16}$/.test(id);
}
function copyToClipboard(str) {