From 58b7a176804e89b99cfe1afccaa55599586f8983 Mon Sep 17 00:00:00 2001 From: Danny Coates Date: Tue, 26 Mar 2019 09:58:04 -0700 Subject: [PATCH] fixed isFile for extended file id size --- app/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils.js b/app/utils.js index 735e6da9..feaa80ce 100644 --- a/app/utils.js +++ b/app/utils.js @@ -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) {