Replies: 6 comments 3 replies
-
To be sure I created a PAT and called the API:
the answer came empty. |
Beta Was this translation helpful? Give feedback.
-
Same exact problem with my account, got it around a week ago. |
Beta Was this translation helpful? Give feedback.
-
Running into this myself. The suggestion from @Fil does not work for me. |
Beta Was this translation helpful? Give feedback.
-
Seems like Microsoft is breaking notifications just for the sake of doing something, instead of fixing bugs present since a decade. Because changing something just to make it worse is much better than fixing things, amirite... Anyway, what you really need to do, is
How this works, is that when you select all notifications with the link (instead of just the checkbox), it uses a whole entirely different endpoint.
Sadly I can't figure out how to generate this token, but it seems like you can execute this Javascript in https://github.com/notifications to reproduce the above payload: (function(doc,endpoint)
{
const a=doc.querySelector('form[action="'+endpoint+'"]');
const b=doc.createElement("input");
b.type='hidden';
b.name='query';
b.value="";
a.appendChild(b);
const c=doc.createElement("input");
c.type='hidden';
c.name='mark_all';
c.value="1";
a.appendChild(c);
a.submit();
})(document,"/notifications/beta/mark"); How this Javascript works, is that the token is already present as a hidden |
Beta Was this translation helpful? Give feedback.
-
This also started to happen for me. Yesterday and today again. Since i have enough notifications in the inbox the mark all as unread and then mark as read trick works. This is really annoying. First they vandalized the dashboard feed removing the one feature that made it useful (showing commits of repos you follow) and now the notification system that was working perfectly before broke. I don't want a Windows situation where every update breaks something please. |
Beta Was this translation helpful? Give feedback.
-
i have the same problem. |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Bug
Body
For the last 3 or 4 days, the notification indicator is stuck in "unread" state, but my list of notifications shows no unread message. However the pagination element shows “1-0 of 1” (which makes no sense), and the "Inbox", "Participating" and "Mentioned" trays indicate they have 1 message.
I can only guess that a message has been stuck in a bad state that makes it impossible to display, but is still counted. It is annoying because I used to look at my new notifications when this indicator was on.
I hope to either get a fix for my account, or an alternative way to delete this message if my hypothesis is correct.
Note: this is different from https://github.com/orgs/community/discussions/77877
Beta Was this translation helpful? Give feedback.
All reactions