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=")) {
|
if (inputQuery.contains("watch?v=")) {
|
||||||
inputQuery = inputQuery.substring(8);
|
inputQuery = inputQuery.substring(8);
|
||||||
}
|
}
|
||||||
|
el = inputQuery.split("&");
|
||||||
if (inputQuery.contains("&list=")) {
|
inputQuery = el[0];
|
||||||
el = inputQuery.split("&list=");
|
el = inputQuery.split("\\?");
|
||||||
inputQuery = el[0];
|
inputQuery = el[0];
|
||||||
}
|
|
||||||
|
|
||||||
if (inputQuery.contains("?feature=share")){
|
|
||||||
el = inputQuery.split("\\?feature=share");
|
|
||||||
inputQuery = el[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (resetResults) resultObjects.clear();
|
if (resetResults) resultObjects.clear();
|
||||||
Video v = infoUtil.getVideo(inputQuery);
|
Video v = infoUtil.getVideo(inputQuery);
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ buildscript {
|
||||||
|
|
||||||
def versionMajor = 1
|
def versionMajor = 1
|
||||||
def versionMinor = 4
|
def versionMinor = 4
|
||||||
def versionPatch = 7
|
def versionPatch = 8
|
||||||
def versionBuild = 0 // bump for dogfood builds, public betas, etc.
|
def versionBuild = 0 // bump for dogfood builds, public betas, etc.
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue