Be more formal about the file read step on restore, just in case
This commit is contained in:
parent
ec6f20c72c
commit
d00d35f611
1 changed files with 3 additions and 1 deletions
|
@ -187,7 +187,9 @@ define([
|
|||
var file = new File();
|
||||
file
|
||||
.restore(id)
|
||||
.then(file.read.bind(file))
|
||||
.then(function() {
|
||||
return file.read();
|
||||
})
|
||||
.then(function(data) {
|
||||
c({
|
||||
value: data,
|
||||
|
|
Loading…
Reference in a new issue