Skip to content

Commit 13b4d6d

Browse files
author
Lauren Long
committed
Merge branch 'master' of github.com:firebase/firebase-functions
2 parents 1301faa + 0edf47f commit 13b4d6d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

changelog.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
changed - Removes temporary “shim” for analytics event timestamps.
2+
fixed - Fixes return type for DeltaSnapshot#getPriority() for database functions

src/providers/database.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export class DeltaSnapshot implements firebase.database.DataSnapshot {
179179
exportVal(): any { return this.val(); }
180180

181181
// TODO(inlined): figure out what to do here
182-
getPriority(): any {
182+
getPriority(): string|number|null {
183183
return 0;
184184
}
185185

0 commit comments

Comments
 (0)