Fixing the image link classification with uppercase extensions.

This commit is contained in:
Vitor Pamplona
2023-12-12 20:29:28 -05:00
parent dc73aec334
commit c2532322fd

View File

@ -101,7 +101,7 @@ fun removeQueryParams(fullUrl: String): String {
} else if (fullUrl.contains("#")) {
fullUrl.split("#")[0].lowercase()
} else {
fullUrl
fullUrl.lowercase()
}
}