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