Changes between Initial Version and Version 1 of Ticket #34644


Ignore:
Timestamp:
Jun 8, 2023, 10:24:51 PM (18 months ago)
Author:
Shaheed Haque
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34644 – Description

    initial v1  
    55​https://github.com/python-social-auth/social-app-django/blob/8d0a2052d1b22a899454571c62237d23aa25af97/social_django/storage.py#L24
    66
    7 Second, on the stack, I have the frames shown in the attachment "stack frames". The important point is that when I enter the two new lines of code added in #34539, value is a dict, but the value is flattened into a string by the new code.
    8 
    9 The result is that the database JSONField has the saved string while previously, the dict was saved as expected. I believe that to be incorrect.
     7Second, on the stack, I have the frames shown in the attachment "stack frames". The important point is that when I enter the two new lines of code added in #34539, {{{value}}} is a dict, but is flattened into a string by the new code. The result is that the database JSONField has the saved string while previously, the dict was saved as expected. I believe that to be incorrect.
    108
    119(Perhaps the intent here was to only have this change apply to subclasses of JSONField?)
Back to Top