The `event` Argument in Firebase Function-Trigger for `onWrite(event)` returns null, if the key/push-id ends in numbers. ```Javascript exports.notify = functions.database.ref("/Message/{pushId}").onWrite(event => { const body = event.data.val(); // returns null ... } ``` ### Version info **firebase-tools: 3.14.0** **firebase-functions:^0.7.1** ### Test case & How to reproduce `https://my-firebase-url.com/Message/{pushId}/..` This push-id cannot be recognized by the trigger, thus returns null as argument: `https://my-firebase-url.com/Message/n_12/..` This push-id works: `https://my-firebase-url.com/Message/blabla/..`