"You can't perform that action at this time" when I star a repository #69366
-
Beta Was this translation helpful? Give feedback.
Replies: 9 comments 15 replies
-
|
@Helloyunho I'm still running into the same issue in mid-October. |
Beta Was this translation helpful? Give feedback.
-
|
Try clearing the web browser's cache and logging in again to the account. I was facing the same. Got resolved by this. |
Beta Was this translation helpful? Give feedback.
-
|
@Helloyunho @mjfos2r @MrDevel0per I also have this problem and have figured out why it happens. It's because Github uses the Element.checkVisibility API (at https://github.githubassets.com/assets/behaviors-934d11c22368.js), this API was added after Chrome 105.0, so any chrome version less than 105.0 will cause an error. Github has actually abandoned lower versions of Chrome. SolutionTo implement a polyfill for the Update: It seems that github just fix this issue last week which may need a few weeks to deploy to production. github/browser-support#47 |
Beta Was this translation helpful? Give feedback.
-
|
I still seeing this issue in my latest Safari. What should I do? |
Beta Was this translation helpful? Give feedback.
-
|
Still doesn't work here. Just updated Safari as well. |
Beta Was this translation helpful? Give feedback.
-
|
Hey @Helloyunho !
|
Beta Was this translation helpful? Give feedback.
-
|
Seems it still doesn't work on safari. surprised they are using a feature this new that all major browsers do not support yet. |
Beta Was this translation helpful? Give feedback.
-
|
Certain browser extensions, particularly those focused on privacy or security, could affect website functionality. Try disabling your extensions one by one to determine if any of them are causing the issue. |
Beta Was this translation helpful? Give feedback.

@Helloyunho @mjfos2r @MrDevel0per I also have this problem and have figured out why it happens. It's because Github uses the Element.checkVisibility API (at https://github.githubassets.com/assets/behaviors-934d11c22368.js), this API was added after Chrome 105.0, so any chrome version less than 105.0 will cause an error. Github has actually abandoned lower versions of Chrome.
Solution
To implement a polyfill for the
Element.checkVisibilitymethod. I provide a ready-made tampermonkey script to achieve this. Fix "You can't perform that action at this time" for GithubUpdate: It seems that github just fix this issue last week which may need a few weeks to deploy to production. github/browser-…