Skip to content
Snippets Groups Projects
Unverified Commit 86614e25 authored by Andrew Morgan's avatar Andrew Morgan Committed by GitHub
Browse files

Fix a small typo in the arguments of simple_update in update_remote_profile_cache (#7511)

parent 24d9151a
No related branches found
No related tags found
No related merge requests found
Fix a long-standing bug that broke the update remote profile background process.
...@@ -110,7 +110,7 @@ class ProfileStore(ProfileWorkerStore): ...@@ -110,7 +110,7 @@ class ProfileStore(ProfileWorkerStore):
return self.db.simple_update( return self.db.simple_update(
table="remote_profile_cache", table="remote_profile_cache",
keyvalues={"user_id": user_id}, keyvalues={"user_id": user_id},
values={ updatevalues={
"displayname": displayname, "displayname": displayname,
"avatar_url": avatar_url, "avatar_url": avatar_url,
"last_check": self._clock.time_msec(), "last_check": self._clock.time_msec(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment