Skip to content

Commit

Permalink
breadcrumbs
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscerri committed Jan 4, 2023
1 parent c2edad8 commit 1c1322a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
15 changes: 4 additions & 11 deletions app/src/main/java/com/deniscerri/ytdlnis/page/HomeFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -523,17 +523,10 @@ private void parseQuery(boolean resetResults) {
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);
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 1c1322a

Please sign in to comment.