Fix shadowing

This commit is contained in:
Nicolas Werner 2021-08-14 02:52:43 +02:00
parent 110fef5c68
commit 69e65cef2f
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
1 changed files with 2 additions and 3 deletions

View File

@ -4013,8 +4013,7 @@ 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()))
cacheEntry = json::parse(std::string_view(oldKeys.data(), oldKeys.size()))
.get<UserKeyCache>();
}
cacheEntry.last_changed = sync_token;