If you are admin on an instance and you go to Administration->Accounts and choose your own account the Suspend Account button should not exist or should be disable to avoid suspending yourself by mistake.
master
(If you're a user, don't worry about this).If this happens to you by mistake you can remove the suspension manually from the database with something like
su - postgres
psql
\connect mastodon_production
update accounts set suspended='f' where username='YOUR_USERNAME';
BTW: don't test suspending your account in production as you will break it completely. Found that the hard way :)
Seems fixed, I don't see a "perform full suspension" or "silence" button on my own account.
fixed in #5635
Most helpful comment
If this happens to you by mistake you can remove the suspension manually from the database with something like
BTW: don't test suspending your account in production as you will break it completely. Found that the hard way :)