breadcrumbs

This commit is contained in:
Denis Çerri 2023-01-04 17:00:07 +01:00
parent c2edad85a2
commit 1c1322ab60
No known key found for this signature in database
GPG key ID: 96B3554AF5B193EE
2 changed files with 5 additions and 12 deletions

View file

@ -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);

View file

@ -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 {