File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -137,8 +137,8 @@ - (NSDictionary *) snapshotToDict:(FIRDataSnapshot *) snapshot
137
137
[dict setValue: snapshot.key forKey: @" key" ];
138
138
NSDictionary *val = snapshot.value ;
139
139
[dict setObject: val forKey: @" value" ];
140
- NSDictionary *exportVal = snapshot.valueInExportFormat ;
141
- [dict setObject: exportVal forKey: @" exportVal " ];
140
+ NSDictionary *exportValue = snapshot.valueInExportFormat ;
141
+ [dict setObject: exportValue forKey: @" exportValue " ];
142
142
// Snapshot ordering
143
143
NSMutableArray *childKeys = [NSMutableArray array ];
144
144
if (snapshot.childrenCount > 0 ) {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export default class Snapshot {
22
22
this . ref = ref ;
23
23
this . key = snapshot . key ;
24
24
this . value = snapshot . value ;
25
- this . exportVal = snapshot . exportVal ;
25
+ this . exportValue = snapshot . exportValue ;
26
26
this . exists = snapshot . exists || true ;
27
27
this . priority = snapshot . priority === undefined ? null : snapshot . priority ;
28
28
this . childKeys = snapshot . childKeys || [ ] ;
@@ -37,7 +37,7 @@ export default class Snapshot {
37
37
}
38
38
39
39
exportVal ( ) {
40
- return this . exportVal ;
40
+ return this . exportValue ;
41
41
}
42
42
43
43
child ( path : string ) {
You can’t perform that action at this time.
0 commit comments