Skip to content

Commit

Permalink
removed extraTags parameter in viewZendeskTickets
Browse files Browse the repository at this point in the history
  • Loading branch information
mzorz committed Jul 17, 2018
1 parent 97b7a5d commit 76d8cff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -417,8 +417,8 @@ public static void viewHelpAndSupport(@NonNull Context context, @NonNull Origin
}

public static void viewZendeskTickets(@NonNull Context context,
@Nullable SiteModel selectedSite, @Nullable List<String> extraSupportTags) {
viewHelpAndSupport(context, Origin.ZENDESK_NOTIFICATION, selectedSite, extraSupportTags);
@Nullable SiteModel selectedSite) {
viewHelpAndSupport(context, Origin.ZENDESK_NOTIFICATION, selectedSite, null);
}

public static void viewSSLCerts(Context context, String certificateString) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,12 +314,10 @@ private void launchZendeskMyTickets() {
// the right section.
mBottomNav.setCurrentPosition(PAGE_ME);

// init selected site, this is the same as in
// init selected site, this is the same as in onResume
initSelectedSite();

ActivityLauncher.viewZendeskTickets(
this,
getSelectedSite(), null);
ActivityLauncher.viewZendeskTickets(this, getSelectedSite());
}

/*
Expand Down

0 comments on commit 76d8cff

Please sign in to comment.