fixed #84 Import bug
parent
e24b8ac93a
commit
da7ddfb5d7
|
@ -74,9 +74,6 @@ if(os.type().indexOf("Windows") > -1)
|
|||
//thats much faster, about factor 10
|
||||
else
|
||||
{
|
||||
//Queue with the converts we have to do
|
||||
var queue = async.queue(doConvertTask, 1);
|
||||
|
||||
//spawn the abiword process
|
||||
var abiword = spawn(settings.abiword, ["--plugin", "AbiCommand"]);
|
||||
|
||||
|
@ -137,6 +134,9 @@ else
|
|||
};
|
||||
}
|
||||
|
||||
//Queue with the converts we have to do
|
||||
var queue = async.queue(doConvertTask, 1);
|
||||
|
||||
exports.convertFile = function(srcFile, destFile, type, callback)
|
||||
{
|
||||
queue.push({"srcFile": srcFile, "destFile": destFile, "type": type, "callback": callback});
|
||||
|
|
Loading…
Reference in New Issue