mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Change MediaFolder.ID type to int32
This commit is contained in:
parent
d24709b521
commit
1cfa7b2272
4 changed files with 9 additions and 9 deletions
|
@ -24,7 +24,7 @@ type StatusInfo struct {
|
|||
MediaFolder string
|
||||
Scanning bool
|
||||
LastScan time.Time
|
||||
Count int
|
||||
Count int64
|
||||
}
|
||||
|
||||
type FolderScanner interface {
|
||||
|
@ -42,7 +42,7 @@ type scanner struct {
|
|||
|
||||
type scanStatus struct {
|
||||
active bool
|
||||
count int
|
||||
count int64
|
||||
lastUpdate time.Time
|
||||
}
|
||||
|
||||
|
@ -138,7 +138,7 @@ func (s *scanner) getStatus(folder string) *scanStatus {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (s *scanner) setStatus(folder string, active bool, count int, lastUpdate time.Time) {
|
||||
func (s *scanner) setStatus(folder string, active bool, count int64, lastUpdate time.Time) {
|
||||
s.lock.Lock()
|
||||
defer s.lock.Unlock()
|
||||
if status, ok := s.status[folder]; ok {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue