Merge remote-tracking branch 'origin/feature/mongo-driver-v2'
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m34s

This commit is contained in:
2026-04-26 14:35:07 +02:00
34 changed files with 203 additions and 473 deletions
+1 -4
View File
@@ -51,10 +51,7 @@ func GetIsoWeekCount(year int) int {
w2 -= 1
w3 -= 1
w := max(w2, w1)
if w3 > w {
w = w3
}
w := max(w3, max(w2, w1))
return w
}