-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
muted thread still produces pollVote notification #8102
Comments
Apparently when implementing thread mute, this was probably forgotten. Probably implement a check if the thread is muted before this: misskey/packages/backend/src/services/note/polls/vote.ts Lines 61 to 65 in 1afafc0
Also NoteWatching users will be notified as well, and I think when a thread mute is applied, the note watching is not also removed as far as I can see. So we either need another check there or make sure that if a thread is muted, the note watchings for all notes in the thread are removed in |
This is intended because thread mute is a feature that mutes conversations. |
Then I don't think this is what people (including me) expect when they use that button. I talked to multiple people that were confused why they were still receiving notifications from threads they had muted. Maybe this is the english translation, but if I "mute" something that means I do not hear about it again. |
Maybe we should change the name to "Mute Conversation" instead of "Thread Mute". |
I guess that would be one solution. But I'm still worried that muting notifications as something separate would make the implementation too complicated or the UI too confusing. |
What about introducing notification mute as a setting, just like Pleroma has it implemented? I think that would be better than having "Mute conversation" and "Mute notifications" in the UI |
Like the current muting of conversations this should be implemented in the backend and not in the client. This is because the thread mute could be used for protecting against harassment and so should work across different devices. I tried to flesh out the two different suggestions a bit more: syuilo's suggestionclientA new entry is added to the note menu: "Mute notifications". It could use the strike-through bell icon to differentiate from the existing option (translation to be changed to "Mute conversation") with the strike-through speech bubble icon. This could make the menu more confusing. backendAdding a column to the This may increase backend and database load. Jeder321's suggestionThis could be implemented in multiple ways, but in general I believe this approach would be more complicated. One way would be this: clientNotifications from events in muted threads have different notification types that users can disable separately in notification settings. This could make the behaviour of the menu item confusing if someone does not know about the setting. But I think the setting would be in a place where users would check if they receive unwanted notifications so that might not be a problem. backendAdding the additional types to the enum for Both user profile data and thread muting data has to be queried from the database before a notification is generated. However the |
Maybe as a third option, a combination of the two would be possible: Adding an additional field to If a thread muting entry exists, the notification must be allowed by it, in addition to the user profile allowing it. This could be implemented by adding an additional check here: misskey/packages/backend/src/services/create-notification.ts Lines 18 to 20 in b811de5
|
I think with my above suggestion this could be solved together with #8712, like this: When the "mute thread" menu entry is clicked, a dialogue similar to the notification settings is shown, like this: Note how the last entry is "Notes in this thread" which would completely hide the Notes as requested in #8712. A problem with this is that this would mean users would not be able to un-mute a thread. Maybe a separate entry in the settings would be necessary to list all currently muted threads, maybe also be able to adjust the mutes. Or display thread mutes similar to soft mutes (like e.g. Pleroma). I'm not sure about the exact implementation of the last checkbox. It would maybe make more sense if "Notes in this thread" also mutes all notifications in that thread, since the user will not be able to see the notes anyway. |
Currently, I think notification for pollVote is already removed, so close this as not planned. (for enhancement of thread mute, please see the other issues.) |
💡 Summary
Even if you mute a note that contained a poll, you will still receive the notifications that someone voted on the poll.
🙂 Expected Behavior
No notification after muting the thread.
Still notifications after muting the thread.
📝 Steps to Reproduce
📌 Environment
Misskey 12.100.2
The text was updated successfully, but these errors were encountered: