fix(OAuth): Remove masked_encrypted_extra from DB update properties (#31834)

This commit is contained in:
Vitor Avila
2025-01-14 11:45:21 -03:00
committed by GitHub
parent c2d7cf388d
commit 8050e351ed
2 changed files with 49 additions and 1 deletions

View File

@@ -72,7 +72,7 @@ class UpdateDatabaseCommand(BaseCommand):
self._properties["encrypted_extra"] = (
self._model.db_engine_spec.unmask_encrypted_extra(
self._model.encrypted_extra,
self._properties["masked_encrypted_extra"],
self._properties.pop("masked_encrypted_extra"),
)
)