Skip to content
This repository has been archived by the owner on Nov 9, 2018. It is now read-only.

Commit

Permalink
Corrected getDefaultApp usage
Browse files Browse the repository at this point in the history
Auditors: @bbondy
  • Loading branch information
SergeyZhukovsky committed Feb 4, 2016
1 parent ed8136b commit f06cd2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ private void configureDefaultApp(PackageManager packageManager, String urlAsStri
URL url = new URL(urlAsString);
List<ResolveInfo> tempResolveInfos = new ArrayList<>();
if (!urlAsString.equals(mContext.getString(R.string.empty_bubble_page))) {
tempResolveInfos = Settings.get().getAppsThatHandleUrl(urlAsString, packageManager);
tempResolveInfos = getAppsThatHandleUrl(urlAsString, packageManager);
}
final List<ResolveInfo> resolveInfos = tempResolveInfos;

Expand Down

2 comments on commit f06cd2d

@bbondy
Copy link
Member

@bbondy bbondy commented on f06cd2d Feb 4, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

@Dirtyblckpistol
Copy link

@Dirtyblckpistol Dirtyblckpistol commented on f06cd2d Feb 4, 2016 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.