Skip to content

Commit

Permalink
#687 fix import team of wertungen
Browse files Browse the repository at this point in the history
  • Loading branch information
luechtdiode committed Jul 23, 2023
1 parent 0e40a43 commit fe9e06c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/scala/ch/seidel/kutu/data/ResourceExchanger.scala
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,8 @@ object ResourceExchanger extends KutuService with RiegenBuilder {
},
riege = if (fields(wertungenHeader("riege")).nonEmpty) Some(fields(wertungenHeader("riege"))) else None,
riege2 = if (fields(wertungenHeader("riege2")).nonEmpty) Some(fields(wertungenHeader("riege2"))) else None,
team = if (fields(wertungenHeader("team")).nonEmpty) wertungenHeader("team") else 0
team = if (fields(wertungenHeader("team")).nonEmpty) fields(wertungenHeader("team")) else 0
)
// println(w.athletId, getAthletName(w.athletId), w.endnote, w.wettkampfdisziplinId, w.wettkampfdisziplinId, getWettkampfDisziplinName(w))
w
}
val start = System.currentTimeMillis()
Expand Down

0 comments on commit fe9e06c

Please sign in to comment.