Merge pull request #71 from Marginal/master

Don't modify message body
This commit is contained in:
AnthorNet 2018-01-27 08:52:44 +01:00 committed by GitHub
commit 7e2eb08b67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ class DuplicateMessages(Thread):
# Shallow copy, minus headers # Shallow copy, minus headers
jsonTest = { jsonTest = {
'$schemaRef': json['$schemaRef'], '$schemaRef': json['$schemaRef'],
'message': json['message'], 'message': dict(json['message']),
} }
# Convert starPos to avoid software modification in dupe messages # Convert starPos to avoid software modification in dupe messages