-
Select Topic AreaBug BodyI have a notification i can't get rid of, even after multiple reloads etc... |
Beta Was this translation helpful? Give feedback.
Replies: 12 comments 21 replies
-
There are some suggestions here that should help you: #6874 Like this:
|
Beta Was this translation helpful? Give feedback.
-
Thanks for posting in the GitHub Community, @TriMoon ! We're happy you're here. You are more likely to get a useful response if you are posting your question in the applicable category, the Issues category is solely related to conversations around the GitHub products Issues and Projects. I've gone ahead and moved it for you. Good luck! |
Beta Was this translation helpful? Give feedback.
-
Somehow they seem to have fixed my issue Behind the scenes because it's gone without me doing anything except posting this thread 🤣 |
Beta Was this translation helpful? Give feedback.
-
I too have a stuck notification now. |
Beta Was this translation helpful? Give feedback.
-
I'm having the same problem I think. It seems to be coming from this particular repository but I tried all kind of filters and nothing shows up: It's getting pretty annoying, anyway I can get rid of it? |
Beta Was this translation helpful? Give feedback.
-
I am experiencing the same issue. I tired all the steps mentioned here but I cannot resolve it. I have 3 repos with notifications that do not show when I click on them so i cannot mark them as done. |
Beta Was this translation helpful? Give feedback.
-
I also have a "stuck notification". Still someone watching here who can fix this for me? I tried everything... |
Beta Was this translation helpful? Give feedback.
-
I also have a "stuck notification". Still someone watching here who can fix this for me? I tried everything... |
Beta Was this translation helpful? Give feedback.
-
Same issue here.. |
Beta Was this translation helpful? Give feedback.
-
This has resolved it for me. You have to create a GitHub token, select "Access notifications" and create it. Copy the token and in your console run Then copy and paste this into your console and run it: curl -X PUT \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token $TOKEN" \
https://api.github.com/notifications \
-d @<(cat <<EOF
{
"last_read_at": "$(date -u +'%Y-%m-%dT%H:%M:%SZ')"
}
EOF
) |
Beta Was this translation helpful? Give feedback.
-
(see this for full explaination) You can go to https://github.com/notifications, and run this script in Inspect Element console: (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"); If it doesn't make the ghost notification read, replace |
Beta Was this translation helpful? Give feedback.
-
Got a stuck notification because dude opened a discussion in my repo, was getting notifications from it, then dude somehow got DELETED along with his discussion yet notification is permastuck, this is so annoying |
Beta Was this translation helpful? Give feedback.
Somehow they seem to have fixed my issue Behind the scenes because it's gone without me doing anything except posting this thread 🤣