fix: increment manifest sequence for client code cache invalidation (#631)

This commit is contained in:
Niq Dudfield
2025-12-24 08:16:00 +07:00
committed by GitHub
parent 5a118a4e2b
commit 775fb3a8b2

View File

@@ -471,6 +471,10 @@ ManifestCache::applyManifest(Manifest m)
auto masterKey = m.masterKey;
map_.emplace(std::move(masterKey), std::move(m));
// Increment sequence to invalidate cached manifest messages
seq_++;
return ManifestDisposition::accepted;
}