Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit 91bebbf

Browse files
committed
fix primitive to object transition (broken after merge)
1 parent bfbb043 commit 91bebbf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/FirebaseObject.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,8 @@
329329
}
330330

331331
var send = $firebaseUtils.debounce(function(val) {
332-
rec.$$scopeUpdated($firebaseUtils.scopeData(val))
332+
var scopeData = $firebaseUtils.scopeData(val);
333+
rec.$$scopeUpdated(scopeData)
333334
['finally'](function() {
334335
sending = false;
335336
if(!scopeData.hasOwnProperty('$value')){

0 commit comments

Comments
 (0)