filexfer: Remove wrongly placed semicolon

Spotted by coverity
This commit is contained in:
Pavel Grunt 2016-05-04 14:57:20 +02:00 committed by Jeremy White
parent 54cc41299b
commit 6b239731b4
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ function handle_file_drop(e)
e.preventDefault();
for (var i = files.length - 1; i >= 0; i--)
{
if (files[i].type); // do not copy a directory
if (files[i].type) // do not copy a directory
sc.file_xfer_start(files[i]);
}