Fix not deleting old file entries in proxy file list

This commit is contained in:
Ingo Oppermann 2023-06-15 20:19:16 +02:00
parent a84b4f4599
commit e366ff8626
No known key found for this signature in database
GPG Key ID: 2AB32426E9DD229E

View File

@ -196,7 +196,7 @@ func (p *proxy) Start() {
for _, file := range update.Files {
p.fileid[file] = update.ID
}
p.idfiles[update.ID] = files
p.idfiles[update.ID] = update.Files
p.idupdate[update.ID] = update.LastUpdate
p.lock.Unlock()