Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 98DA4EAD1 for ; Fri, 22 Feb 2013 20:24:08 +0000 (UTC) Received: (qmail 4553 invoked by uid 500); 22 Feb 2013 20:24:08 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 4529 invoked by uid 500); 22 Feb 2013 20:24:08 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 4522 invoked by uid 99); 22 Feb 2013 20:24:08 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 22 Feb 2013 20:24:08 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 4D34582EE86; Fri, 22 Feb 2013 20:24:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agrieve@apache.org To: commits@cordova.apache.org X-Mailer: ASF-Git Admin Mailer Subject: ios commit: Revert accidentaly change in PluginResult that broke threading. Message-Id: <20130222202408.4D34582EE86@tyr.zones.apache.org> Date: Fri, 22 Feb 2013 20:24:08 +0000 (UTC) Updated Branches: refs/heads/master 95f16a6dc -> 909652709 Revert accidentaly change in PluginResult that broke threading. Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-ios/commit/90965270 Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/90965270 Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/90965270 Branch: refs/heads/master Commit: 9096527098735d6069a858ff74bd3e926a7dbc4c Parents: 95f16a6 Author: Andrew Grieve Authored: Fri Feb 22 15:23:06 2013 -0500 Committer: Andrew Grieve Committed: Fri Feb 22 15:23:06 2013 -0500 ---------------------------------------------------------------------- CordovaLib/Classes/CDVCommandDelegateImpl.m | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/90965270/CordovaLib/Classes/CDVCommandDelegateImpl.m ---------------------------------------------------------------------- diff --git a/CordovaLib/Classes/CDVCommandDelegateImpl.m b/CordovaLib/Classes/CDVCommandDelegateImpl.m index 6d1c667..7779880 100644 --- a/CordovaLib/Classes/CDVCommandDelegateImpl.m +++ b/CordovaLib/Classes/CDVCommandDelegateImpl.m @@ -99,7 +99,7 @@ NSString* js = [NSString stringWithFormat:@"cordova.require('cordova/exec').nativeCallback('%@',%d,%@,%d)", callbackId, status, encodedMessage, keepCallback]; - [self evalJsHelper2:js]; + [self evalJsHelper:js]; } - (void)evalJs:(NSString*)js