-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-m doesn't work anymore #511
Comments
What command is that? |
toot notifications -rm
|
For now I reverted 20eec3b and that fixes things. So that's for sure where
the problem is.
(I have a local-hacks branch and I just git reverted that particular commit,
keeping both 20eec3b and my revert in my tree for now. I love how git could
automatically do this, no coding, it just created the commit for me. So
great.💆🏻♀️)
|
I cannot reproduce this so I'm guessing this is due to the server you're connecting to not supporting the The way --mentions used to work was to use the To get the exact same behaviour as before you can exclude the types you don't want, e.g.
Which is not nice, but if it's used in scripts maybe it's fine? I did some digging, and you're running Akkoma which does not support the I started to report an issue, but I'm unsure if this should be reported to Akkoma or Pleroma on which it's based. |
Since you already have a hacks branch, you could modify this line. From: params = {"types[]": types, "exclude_types[]": exclude_types, "limit": limit} To: params = {"include_types[]": types, "exclude_types[]": exclude_types, "limit": limit} And that should temporarily solve your issues. |
Okay, I've applied and deployed that temporary fix now. Thank you so much!
🙏🏻
Please report the issue directly to Akkoma instead of (or in addition to)
to P█████. The fork was so long ago.
Also consider removing the deprecation message and keeping -m as an alias
for -t mention. 🙋🏻♀️
Also sometimes a line of dashes show up even there's no notifications.
And also I'm still using an local copy of setup.py to build 😅
But that's because I'm still waiting on fpm to resolve their issue.
|
I use
-rm
all the time and have a couple of scripts that depend on it also; now I get a deprecation message but-rt mention
doesn't work either. Neither-rm
nor-rt mention
seem to filter out likes.The text was updated successfully, but these errors were encountered: