Skip to content

Commit b477130

Browse files
authored
Merge pull request #5 from flamebase/develop
Develop
2 parents 0821897 + eb862d2 commit b477130

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

index.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,11 @@ function FlamebaseDatabase(database, path) {
5555
} catch(e) {
5656
console.log("####################### data error: " + e);
5757
console.log("####################### deleting: " + path);
58-
object.db.delete(path);
58+
try {
59+
object.db.delete(path);
60+
} catch (e) {
61+
62+
}
5963
object.ref = {};
6064
}
6165
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@
4747
"scripts": {
4848
"test": "echo \"Error: no test specified\" && exit 1"
4949
},
50-
"version": "1.0.1"
50+
"version": "1.0.2"
5151
}

0 commit comments

Comments
 (0)