Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/bug-accounts-no-nauta-home'
Browse files Browse the repository at this point in the history
  • Loading branch information
lesclaz committed Apr 15, 2023
2 parents b5c3f8c + 1a088bc commit 46ba4cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "cu.suitetecsa"
version = "0.1.5"
version = "0.1.6"

publishing {
publications { // Configure el paquete de salida publicado, un proyecto puede tener múltiples salidas, pero solo una es
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ class JSoupNautaScrapper(private val session: NautaSession) : NautaScrapper {
attrs[7].selectFirst("p")!!.text().trim(),
if (attrs.size > 8) attrs[8].selectFirst("p")!!.text().trim() else null,
if (attrs.size > 8) attrs[9].selectFirst("p")!!.text().trim() else null,
if (attrs.size > 7) attrs[10].selectFirst("p")!!.text().trim() else null,
if (attrs.size > 8) attrs[10].selectFirst("p")!!.text().trim() else null,
if (attrs.size > 8) attrs[11].selectFirst("p")!!.text().trim() else null,
if (attrs.size > 8) attrs[12].selectFirst("p")!!.text().trim() else null,
if (attrs.size > 8) attrs[13].selectFirst("p")!!.text().trim() else null,
Expand Down

0 comments on commit 46ba4cc

Please sign in to comment.