File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1212 command : |
1313 sudo gem install xcpretty
1414 sudo gem install cocoapods -v 1.6.1
15- # - run:
16- # name: Fetch Cocoapods specs
17- # command: curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf
18-
15+ - run :
16+ name : Fetch Cocoapods specs
17+ command : curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf
1918 - run : make install
2019 - run : make build
2120 - run : make test
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ + (NSDictionary *)mapToFirebaseParameters:(NSDictionary *)properties withMap:(NS
176176 if ([periodSeparatedKey count ] > 1 ) {
177177 key = [trimmedKey stringByReplacingOccurrencesOfString: @" ." withString: @" _" ];
178178 } else {
179- key = [trimmedKey stringByReplacingOccurrencesOfString: @" " withString: @" _" ];
179+ key = [[ trimmedKey stringByReplacingOccurrencesOfString: @" " withString: @" _ " ] stringByReplacingOccurrencesOfString: @" - " withString: @" _" ];
180180 }
181181 if ([data isKindOfClass: [NSNumber class ]]) {
182182 data = [NSNumber numberWithDouble: [data doubleValue ]];
You can’t perform that action at this time.
0 commit comments