Skip to content

Commit 23f203e

Browse files
committed
fix(file): ignore url when find unsaved files
1 parent ca73a73 commit 23f203e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/object.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1620,7 +1620,7 @@ module.exports = function(AV) {
16201620
}
16211621

16221622
if (object instanceof AV.File) {
1623-
if (!object.url() && !object.id) {
1623+
if (!object.id) {
16241624
files.push(object);
16251625
}
16261626
return;

0 commit comments

Comments
 (0)