write file not as blobs

This commit is contained in:
Matias Alejo Garcia 2015-04-27 11:01:15 -03:00
commit b0967e0628

View file

@ -81,10 +81,7 @@ angular.module('copayApp.services')
v = JSON.stringify(v);
$log.debug('Writing:', k, v);
var blob = new Blob([v], {
type: "text/plain"
});
fileWriter.write(blob);
fileWriter.write(v);
}, cb);
});