Skip to content

Commit 1ce0e64

Browse files
author
Maurice Kleine
authored
Make firestackModule.js working for v3
`this._firestack.database.ref(...refName)` (line 39) should be `this._firestack.database().ref(...refName)`
1 parent 9a84661 commit 1ce0e64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/firestackModule.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export class FirestackModule {
5656

5757
makeRef(path) {
5858
const refName = [this._refName, path]
59-
const ref = this._firestack.database.ref(...refName);
59+
const ref = this._firestack.database().ref(...refName);
6060
return this._makeRef(ref);
6161
}
6262

0 commit comments

Comments
 (0)