Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions helpstack/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@
android:name=".activities.HomeActivity"
android:exported="false"
android:label="@string/hs_app_name">
<intent-filter>
<action android:name="com.tenmiles.helpstack.ShowHelp" />

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".activities.NewIssueActivity"
Expand Down
3 changes: 2 additions & 1 deletion helpstack/src/com/tenmiles/helpstack/HSHelpStack.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

import com.android.volley.RequestQueue;
import com.android.volley.toolbox.Volley;
import com.tenmiles.helpstack.activities.HomeActivity;
import com.tenmiles.helpstack.logic.HSGear;
import com.tenmiles.helpstack.logic.HSSource;

Expand Down Expand Up @@ -85,7 +86,7 @@ public HSGear getGear() {
* @param activity Activity
*/
public void showHelp(Activity activity) {
activity.startActivity(new Intent("com.tenmiles.helpstack.ShowHelp"));
activity.startActivity(new Intent(this.mContext, HomeActivity.class));
}

/**
Expand Down