You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cordova.apache.org by daserge <gi...@git.apache.org> on 2016/04/21 14:51:48 UTC

[GitHub] cordova-lib pull request: CB-11131 Fix TypeError: message.toUpperC...

GitHub user daserge opened a pull request:

    https://github.com/apache/cordova-lib/pull/431

    CB-11131 Fix TypeError: message.toUpperCase is not a function in Cord…

    …ovaLogger
    
    [Jira issue](https://issues.apache.org/jira/browse/CB-11131)

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/MSOpenTech/cordova-lib CB-11131

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/cordova-lib/pull/431.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 #431
    
----
commit a5f09f771167cd879d35831335f88f722cf9a33d
Author: daserge <v-...@microsoft.com>
Date:   2016-04-21T12:50:19Z

    CB-11131 Fix TypeError: message.toUpperCase is not a function in CordovaLogger

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-lib pull request: CB-11131 Fix TypeError: message.toUpperC...

Posted by codecov-io <gi...@git.apache.org>.
Github user codecov-io commented on the pull request:

    https://github.com/apache/cordova-lib/pull/431#issuecomment-214814135
  
    ## [Current coverage][cc-pull] is **100%**
    > Merging [#431][cc-pull] into [master][cc-base-branch] will not change coverage
    
    ```diff
    @@             master       #431   diff @@
    ==========================================
      Files            69         69          
      Lines          9878       9878          
      Methods         841        841          
      Messages          0          0          
      Branches       1271       1271          
    ==========================================
      Hits           9878       9878          
      Misses            0          0          
      Partials          0          0          
    ```
    
    
    [![Sunburst](https://codecov.io/gh/apache/cordova-lib/pull/431/graphs/sunburst.svg?size=660&src=pr)][cc-pull]
    
    
    > Powered by [Codecov](https://codecov.io?src=pr). Last updated by 1ca4804
    [cc-base-branch]: https://codecov.io/gh/apache/cordova-lib/branch/master?src=pr
    [cc-pull]: https://codecov.io/gh/apache/cordova-lib/pull/431?src=pr


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-lib pull request: CB-11131 Fix TypeError: message.toUpperC...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/cordova-lib/pull/431


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-lib pull request: CB-11131 Fix TypeError: message.toUpperC...

Posted by jasongin <gi...@git.apache.org>.
Github user jasongin commented on the pull request:

    https://github.com/apache/cordova-lib/pull/431#issuecomment-214811002
  
    👍 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-lib pull request: CB-11131 Fix TypeError: message.toUpperC...

Posted by jasongin <gi...@git.apache.org>.
Github user jasongin commented on a diff in the pull request:

    https://github.com/apache/cordova-lib/pull/431#discussion_r61116509
  
    --- Diff: cordova-common/src/CordovaLogger.js ---
    @@ -209,7 +209,7 @@ function formatError(error, isVerbose) {
             message = error;
         }
     
    -    if(message.toUpperCase().indexOf('ERROR:') !== 0) {
    +    if(message && typeof message.toUpperCase === 'function' && message.toUpperCase().indexOf('ERROR:') !== 0) {
    --- End diff --
    
    This is fine, but I would have preferred `if (typeof message === 'string' && message.toUpperCase()...)`


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org


[GitHub] cordova-lib pull request: CB-11131 Fix TypeError: message.toUpperC...

Posted by daserge <gi...@git.apache.org>.
Github user daserge commented on the pull request:

    https://github.com/apache/cordova-lib/pull/431#issuecomment-214810543
  
    Updated, thanks!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org
For additional commands, e-mail: dev-help@cordova.apache.org