fix moved account name

pull/419/head
halcy 2025-08-16 21:27:28 +03:00
rodzic 5f7b166b78
commit cfc83cc1b6
3 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -18,6 +18,7 @@ v2.1.0 (IN PROGRESS)
* Added missing `replies_policy` and `exclusive` parameters to list creation and update methods. * Added missing `replies_policy` and `exclusive` parameters to list creation and update methods.
* Add status length counter `get_status_length` (Thanks @yuletide for the suggestion) * Add status length counter `get_status_length` (Thanks @yuletide for the suggestion)
* Fix `notifications` returning nonsense when passing a single `id` (Thanks @chinchalinchin for the report) * Fix `notifications` returning nonsense when passing a single `id` (Thanks @chinchalinchin for the report)
* Fix `moved` accidentally being named `moved_to_account` (Thanks @unusualevent for the report)
v2.0.1 v2.0.1
------ ------

Wyświetl plik

@ -169,7 +169,7 @@ class Account(AttribAccessDict):
* 1.1.2: added * 1.1.2: added
""" """
moved_to_account: "Optional[Account]" moved: "Optional[Account]"
""" """
If set, Account that this user has set up as their moved-to address. (optional) If set, Account that this user has set up as their moved-to address. (optional)

Wyświetl plik

@ -276,7 +276,7 @@
], ],
"enum": null "enum": null
}, },
"moved_to_account": { "moved": {
"description": "If set, Account that this user has set up as their moved-to address.", "description": "If set, Account that this user has set up as their moved-to address.",
"field_type": "Account", "field_type": "Account",
"field_subtype": null, "field_subtype": null,