Skip to content

Commit

Permalink
Fixed Issue #43 Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Ani Sinanaj committed Mar 23, 2017
1 parent 0250c6d commit 5e490fc
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
Binary file modified android/dist/ti.goosh-android-2.0.4.zip
Binary file not shown.
Binary file modified android/dist/ti.goosh.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion android/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 2.0.4
version: 2.0.5
apiversion: 3
architectures: armeabi-v7a x86
description: ti.goosh
Expand Down
2 changes: 1 addition & 1 deletion android/src/ti/goosh/IntentService.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private void parseNotification(Bundle bundle) {

}

if (sendMessage) {
if (sendMessage && module != null) {
module.sendMessage(jsonData, appInBackground);
}

Expand Down
3 changes: 2 additions & 1 deletion android/src/ti/goosh/TiGooshModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ public TiGooshModule() {
}

public static TiGooshModule getModule() {
return module;
if (module != null) return module;
else return new TiGooshModule();
}

public void parseBootIntent() {
Expand Down

0 comments on commit 5e490fc

Please sign in to comment.