Skip to content
Snippets Groups Projects
Commit 2cf1afe2 authored by rswindell's avatar rswindell
Browse files

Fixed typo in previous commit:

line 359: ReferenceError: typeoof is not defined
parent f3dcc86f
No related branches found
No related tags found
No related merge requests found
......@@ -356,7 +356,7 @@ function BinkITCfg()
}
if (this.node[sec].nocrypt == undefined)
this.node[sec].nocrypt = false;
else if (typeoof(this.node[sec].nocrypt) == 'string'){
else if (typeof(this.node[sec].nocrypt) == 'string'){
switch(this.node[sec].nocrypt.toUpperCase()) {
case 'YES':
case 'TRUE':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment