This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 11<img src =" docs/images/firebase-logo.png " width =" 116px " height =" 32px " alt =" Firebase " />
22
3- ## 3.6.0 (2016, September 7)
3+ ## 3.6.1 (2016, September 7)
44
5- [ Full changelog] ( https://github.com/EddyVerbruggen/nativescript-plugin-firebase/compare/3.5.4...3.6.0 )
5+ [ Full changelog] ( https://github.com/EddyVerbruggen/nativescript-plugin-firebase/compare/3.5.4...3.6.1 )
66
77### SDK versions
88If version numbers __ changed__ , clean your platform folders to avoid build errors.
Original file line number Diff line number Diff line change @@ -291,11 +291,11 @@ firebase.analytics.logEvent = function (arg) {
291291 }
292292
293293 var bundle = new android . os . Bundle ( ) ;
294- if ( arg . properties !== undefined ) {
295- for ( var p in arg . properties ) {
296- var prop = arg . properties [ p ] ;
297- if ( prop . value !== undefined ) {
298- bundle . putString ( prop . key , prop . value ) ;
294+ if ( arg . parameters !== undefined ) {
295+ for ( var p in arg . parameters ) {
296+ var param = arg . parameters [ p ] ;
297+ if ( param . value !== undefined ) {
298+ bundle . putString ( param . key , param . value ) ;
299299 }
300300 }
301301 }
Original file line number Diff line number Diff line change @@ -384,11 +384,11 @@ firebase.analytics.logEvent = function (arg) {
384384 }
385385
386386 var dic = NSMutableDictionary . new ( ) ;
387- if ( arg . properties !== undefined ) {
388- for ( var p in arg . properties ) {
389- var prop = arg . properties [ p ] ;
390- if ( prop . value !== undefined ) {
391- dic . setObjectForKey ( prop . value , prop . key ) ;
387+ if ( arg . parameters !== undefined ) {
388+ for ( var p in arg . parameters ) {
389+ var param = arg . parameters [ p ] ;
390+ if ( param . value !== undefined ) {
391+ dic . setObjectForKey ( param . value , param . key ) ;
392392 }
393393 }
394394 }
Original file line number Diff line number Diff line change 11{
22 "name" : " nativescript-plugin-firebase" ,
3- "version" : " 3.6.0 " ,
3+ "version" : " 3.6.1 " ,
44 "description" : " Fire. Base. Firebase!" ,
55 "main" : " firebase.js" ,
66 "nativescript" : {
You can’t perform that action at this time.
0 commit comments