From d0be2c693094d4b003a5652250a56ec3ef96b2f6 Mon Sep 17 00:00:00 2001 From: Mikhail Babynichev Date: Sun, 27 Mar 2022 21:27:36 +0300 Subject: [PATCH] fix: forget to add datafolders here --- housekeeper/state.go | 1 + 1 file changed, 1 insertion(+) diff --git a/housekeeper/state.go b/housekeeper/state.go index e5d6b43..c88cbcf 100644 --- a/housekeeper/state.go +++ b/housekeeper/state.go @@ -183,6 +183,7 @@ func (h *House) AcquireBeatmap(c *CachedBeatmap) (*CachedBeatmap, bool) { h.StateMutex.Unlock() b.mtx.Lock() + b.DataFolders = c.DataFolders // if c is not newer than b, then just return. if !b.LastUpdate.Before(c.LastUpdate) { b.mtx.Unlock() -- GitLab