mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-01 21:30:16 +02:00
HTML Source bugfix
This commit is contained in:
@@ -37,7 +37,9 @@ class HTML extends AppSource {
|
|||||||
.map((e) => e.toLowerCase().startsWith('http://') ||
|
.map((e) => e.toLowerCase().startsWith('http://') ||
|
||||||
e.toLowerCase().startsWith('https://')
|
e.toLowerCase().startsWith('https://')
|
||||||
? e
|
? e
|
||||||
: '${uri.origin}/$e')
|
: e.startsWith('/')
|
||||||
|
? '${uri.origin}/$e'
|
||||||
|
: '${uri.origin}/${uri.path}/$e')
|
||||||
.toList();
|
.toList();
|
||||||
return APKDetails(version, apkUrls, AppNames(uri.host, tr('app')));
|
return APKDetails(version, apkUrls, AppNames(uri.host, tr('app')));
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user