fixes to make Picasso Image Loader work

This library is used by newer NewPipe versions
This commit is contained in:
Julian Winkler
2023-10-08 22:50:28 +02:00
parent 520d153c55
commit 4130e252cc
5 changed files with 25 additions and 14 deletions

View File

@@ -152,6 +152,10 @@ public class Uri {
return uri.getScheme();
}
public String getPath() {
return uri.getPath();
}
@Override
public String toString() {
return String.valueOf(uri);