mirror of
https://github.com/Matte23/circolapp.git
synced 2025-12-06 07:29:10 +00:00
Fix attachment marked with "ALL" not recognized
This commit is contained in:
@@ -43,7 +43,7 @@ class DataFetcher {
|
|||||||
val list = ArrayList<Circular>()
|
val list = ArrayList<Circular>()
|
||||||
|
|
||||||
htmlList.forEach { element ->
|
htmlList.forEach { element ->
|
||||||
if (element.text().startsWith("All")) {
|
if (element.text().startsWith("All", true)) {
|
||||||
list.last().attachmentsNames.add(element.text())
|
list.last().attachmentsNames.add(element.text())
|
||||||
list.last().attachmentsUrls.add(element.attr("href"))
|
list.last().attachmentsUrls.add(element.attr("href"))
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user