[
https://issues.apache.org/jira/browse/CB-9354?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14624850#comment-14624850
]
ASF GitHub Bot commented on CB-9354:
------------------------------------
GitHub user m1r4ge opened a pull request:
https://github.com/apache/cordova-lib/pull/256
CB-9354 Fix array merging with complex items
The issue corresponding to this PR
[CB-9354](https://issues.apache.org/jira/browse/CB-9354).
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/m1r4ge/cordova-lib fix/plist_array_munge
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/cordova-lib/pull/256.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #256
----
commit b3d38a777cef08d751e0a00aa9fbb6f455de2fe4
Author: Svyatoslav Grebenchukov <[email protected]>
Date: 2015-07-13T15:52:42Z
CB-9354 Fix array merging with complex items
----
> Incorrect array munging in *-Info.plist
> ---------------------------------------
>
> Key: CB-9354
> URL: https://issues.apache.org/jira/browse/CB-9354
> Project: Apache Cordova
> Issue Type: Bug
> Components: CLI, CordovaLib
> Affects Versions: 5.1.1
> Environment: Mac OS X Yosemity
> Reporter: Sviatoslav Grebenchucov
>
> After installing
> [phonegap-facebook-plugin|https://github.com/Wizcorp/phonegap-facebook-plugin.git]
> each consequent run of 'cordova prepare' results in creating a duplicate of
> the dictionary containing Facebook custom url scheme.
> After plugin installation App-Info.plist looks like:
> {code:xml}
> <key>CFBundleURLTypes</key>
> <array>
> <dict>
> <key>CFBundleURLSchemes</key>
> <array>
> <string>fb123456789</string>
> </array>
> </dict>
> </array>
> {code}
> After 'cordova prepare':
> {code:xml}
> <key>CFBundleURLTypes</key>
> <array>
> <dict>
> <key>CFBundleURLSchemes</key>
> <array>
> <string>fb123456789</string>
> </array>
> </dict>
> <dict>
> <key>CFBundleURLSchemes</key>
> <array>
> <string>fb123456789</string>
> </array>
> </dict>
> </array>
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]