write file not as blobs

This commit is contained in:
Matias Alejo Garcia 2015-04-27 11:01:15 -03:00
parent 6bd35493de
commit b0967e0628
1 changed files with 1 additions and 4 deletions

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);
});