Fix regexp in previous commit
This commit is contained in:
parent
9193ab3e62
commit
31cacf10d7
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ Zotero.Fulltext = new function(){
|
|||
|
||||
if (!cacheFile.exists()) {
|
||||
var msg = file.leafName + " was not indexed";
|
||||
if (!file.leafName.match(/^[\u0000-\u007F]$/)) {
|
||||
if (!file.leafName.match(/^[\u0000-\u007F]+$/)) {
|
||||
msg += " -- PDFs with filenames containing extended characters cannot currently be indexed due to a Firefox limitation";
|
||||
}
|
||||
Zotero.debug(msg, 2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue