breadcrumbs
This commit is contained in:
parent
c2edad85a2
commit
1c1322ab60
2 changed files with 5 additions and 12 deletions
|
|
@ -523,17 +523,10 @@ public class HomeFragment extends Fragment implements HomeRecyclerViewAdapter.On
|
|||
if (inputQuery.contains("watch?v=")) {
|
||||
inputQuery = inputQuery.substring(8);
|
||||
}
|
||||
|
||||
if (inputQuery.contains("&list=")) {
|
||||
el = inputQuery.split("&list=");
|
||||
inputQuery = el[0];
|
||||
}
|
||||
|
||||
if (inputQuery.contains("?feature=share")){
|
||||
el = inputQuery.split("\\?feature=share");
|
||||
inputQuery = el[0];
|
||||
}
|
||||
|
||||
el = inputQuery.split("&");
|
||||
inputQuery = el[0];
|
||||
el = inputQuery.split("\\?");
|
||||
inputQuery = el[0];
|
||||
try {
|
||||
if (resetResults) resultObjects.clear();
|
||||
Video v = infoUtil.getVideo(inputQuery);
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ buildscript {
|
|||
|
||||
def versionMajor = 1
|
||||
def versionMinor = 4
|
||||
def versionPatch = 7
|
||||
def versionPatch = 8
|
||||
def versionBuild = 0 // bump for dogfood builds, public betas, etc.
|
||||
|
||||
ext {
|
||||
|
|
|
|||
Loading…
Reference in a new issue