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:
Oneric 2025-08-01 00:00:00 +00:00
commit 959f4b43d6

View file

@ -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():