Fix shadowing
This commit is contained in:
parent
110fef5c68
commit
69e65cef2f
@ -4013,9 +4013,8 @@ Cache::markUserKeysOutOfDate(lmdb::txn &txn,
|
|||||||
UserKeyCache cacheEntry;
|
UserKeyCache cacheEntry;
|
||||||
auto res = db.get(txn, user, oldKeys);
|
auto res = db.get(txn, user, oldKeys);
|
||||||
if (res) {
|
if (res) {
|
||||||
auto cacheEntry =
|
cacheEntry = json::parse(std::string_view(oldKeys.data(), oldKeys.size()))
|
||||||
json::parse(std::string_view(oldKeys.data(), oldKeys.size()))
|
.get<UserKeyCache>();
|
||||||
.get<UserKeyCache>();
|
|
||||||
}
|
}
|
||||||
cacheEntry.last_changed = sync_token;
|
cacheEntry.last_changed = sync_token;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user