Mark deleting reblogs as broken
I didn’t test it, but this shouldn’t work atm since reblogs are expected to be removed via POST /api/v1/statuses/:id/unreblog with the id being from the reblogged post, not the id of the reblog itself
This commit is contained in:
parent
7fe8b0ca2d
commit
959f4b43d6
1 changed files with 3 additions and 0 deletions
|
|
@ -246,6 +246,9 @@ def assert_config(config: Config) -> None:
|
|||
if empty(config.user_id):
|
||||
raise ValueError("Unset user id!")
|
||||
|
||||
if config.delete_reblogs:
|
||||
raise ValueError("Deleting/Unreblogging reblogs not yet implemented!")
|
||||
|
||||
def apply_stored_config(config: Config, newvals: dict[str, Any]) -> Config:
|
||||
ephemeral = Config.ephemerals()
|
||||
for k in Config.__annotations__.keys():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue