From e366ff8626accdc1c06722204226abcc0ad991b8 Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Thu, 15 Jun 2023 20:19:16 +0200 Subject: [PATCH] Fix not deleting old file entries in proxy file list --- cluster/proxy/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/proxy/proxy.go b/cluster/proxy/proxy.go index 8cbf04e7..da90ccb7 100644 --- a/cluster/proxy/proxy.go +++ b/cluster/proxy/proxy.go @@ -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()