Skip to content

Commit ac502ef

Browse files
committed
Add retry for fuzzy
1 parent 1ee49d4 commit ac502ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/settings.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ var settings = function() {
5757
}
5858

5959
this.setFuzzyMatch = function(fuzzy) {
60-
if (fuzzy !== true && fuzzy !== false && fuzzy !== 'auto') {
61-
throw "fuzzy matching can be true, false, or 'auto'";
60+
if (fuzzy !== true && fuzzy !== false && fuzzy !== 'auto' && fuzzy !== 'retry') {
61+
throw "fuzzy matching can be true, false, 'auto', or 'retry'";
6262
}
6363
this.settings.fuzzy = fuzzy;
6464
}

0 commit comments

Comments
 (0)