Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
Fix build typo, update to 4.0.3 for npm
Browse files Browse the repository at this point in the history
  • Loading branch information
John Gu committed Jul 1, 2015
1 parent 78cfbbc commit 7eaa918
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-tune",
"version": "4.0.2",
"version": "4.0.3",
"description": "This Cordova plugin allows you to measure installs and events with the TUNE SDK.",
"cordova": {
"id": "cordova-plugin-tune",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-tune"
version="4.0.2">
version="4.0.3">

<name>MATPlugin</name>

Expand Down
2 changes: 1 addition & 1 deletion src/ios/MATPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ - (NSArray *)convertToMATEventItems:(NSArray *)arrDictionaries
float revenue = 0;
if(strRevenue && ![self isNull:strRevenue])
{
unitPrice = [strRevenue floatValue]
unitPrice = [strRevenue floatValue];
}

NSString *strAttribute1 = [dict valueForKey:@"attribute1"];
Expand Down

0 comments on commit 7eaa918

Please sign in to comment.