You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mm...@apache.org on 2013/02/25 14:41:01 UTC

[47/50] ios commit: Revert accidentaly change in PluginResult that broke threading.

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/multipart_plugin_result
Commit: 9096527098735d6069a858ff74bd3e926a7dbc4c
Parents: 95f16a6
Author: Andrew Grieve <ag...@chromium.org>
Authored: Fri Feb 22 15:23:06 2013 -0500
Committer: Andrew Grieve <ag...@chromium.org>
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