mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-13 05:50:45 -05:00
Fix bug where we changes in outlier in metadata dict propogated to other events
This commit is contained in:
parent
78015948a7
commit
c1c7b39827
3 changed files with 8 additions and 4 deletions
|
|
@ -18,7 +18,7 @@ from synapse.util.frozenutils import freeze, unfreeze
|
|||
|
||||
class _EventInternalMetadata(object):
|
||||
def __init__(self, internal_metadata_dict):
|
||||
self.__dict__ = internal_metadata_dict
|
||||
self.__dict__ = dict(internal_metadata_dict)
|
||||
|
||||
def get_dict(self):
|
||||
return dict(self.__dict__)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue