Prepare to fully canonicalize views

This commit is contained in:
2024-05-28 21:38:08 -07:00
parent 93ff83e422
commit f1f4d66678
6 changed files with 20 additions and 15 deletions

View File

@@ -191,8 +191,8 @@ struct Facade {
for (auto iter = versioned.begin(version), end = versioned.end(version);
iter != end; ++iter) {
auto m = *iter;
assert(m.version <= version);
if (m.version <= unversionedVersion) {
assert(m.notModifiedSince <= version);
if (m.notModifiedSince <= unversionedVersion) {
continue;
}
switch (m.type) {