Upgrade Go to 1.23 (#3190)

* Upgrade to Golang 1.23rc1

* Fix imports

* Go 1.23 final version

* Fix lint compatibility with ci-goreleaser
This commit is contained in:
Deluan Quintão 2024-08-19 17:47:54 -04:00 committed by GitHub
parent 0c33523f45
commit c4bd0e67fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 17 additions and 15 deletions

View file

@ -3,7 +3,9 @@ package scanner
import (
"context"
"fmt"
"maps"
"path/filepath"
"slices"
"strings"
"time"
@ -13,7 +15,6 @@ import (
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/model"
"github.com/navidrome/navidrome/utils/slice"
"golang.org/x/exp/maps"
)
// refresher is responsible for rolling up mediafiles attributes into albums attributes,
@ -71,7 +72,7 @@ func (r *refresher) flushMap(ctx context.Context, m map[string]struct{}, entity
return nil
}
ids := maps.Keys(m)
ids := slices.Collect(maps.Keys(m))
chunks := slice.BreakUp(ids, 100)
for _, chunk := range chunks {
err := refresh(ctx, chunk...)