Skip to content

Commit

Permalink
Merge pull request #1332 from thebaztet/master
Browse files Browse the repository at this point in the history
fix: Typo in selected browser preference usage
  • Loading branch information
David-Development authored Dec 10, 2023
2 parents e2fd53e + 8d6cb42 commit cba48b0
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1201,12 +1201,10 @@ public void onClick(RssItemViewHolder vh, int position) {
int selectedBrowser = Integer.parseInt(mPrefs.getString(SettingsActivity.SP_DISPLAY_BROWSER, "0"));
switch(selectedBrowser) {
case 0:
case 2:
openRssItemInCustomTab(currentUrl);
break;
case 1:
//openRssItemInInternalBrowser(currentUrl);
break;
case 2:
openRssItemInExternalBrowser(currentUrl);
break;
}
Expand Down

0 comments on commit cba48b0

Please sign in to comment.