sindresorhus/refined-github

`useful-not-found-page` shows 'This object exists on the default branch' when viewing a deleted issue #4790

gamemaker1 posted onGitHub

Please ensure:

  • The bug is caused by Refined GitHub. It doesn't happen if I disable the extension.

Description

Problem breakdown:

  • The getUrlToFileOnDefaultBranch (called by showDefaultBranchLink) function checks if the URL is a non-404 when the 'branch' part is replaced with the default branch:

https://github.com/sindresorhus/refined-github/blob/b504a42cd783836b979688731a43a0a07be65bf8/source/features/useful-not-found-page.tsx#L60-L64

To prevent this bug from occurring, I think we should fix the GithubURL class, and make sure it does not set the branch variable when it gets an issue link as follows:

diff --git a/source/github-helpers/github-url.ts b/source/github-helpers/github-url.ts
index e8acd411..ec4e8c53 100644
--- a/source/github-helpers/github-url.ts
+++ b/source/github-helpers/github-url.ts
@@ -77,8 +77,12 @@ export default class GitHubURL {

   set pathname(pathname: string) {
     const [user, repository, route, ...ambiguousReference] = pathname.replace(/^\/|\/$/g, '').split('/');
-    const {branch, filePath} = this.disambiguateReference(ambiguousReference);
-    this.assign({user, repository, route, branch, filePath});
+    if (route === 'blob' || route === 'tree') {
+      let { branch, filePath } = this.disambiguateReference(ambiguousReference);
+      this.assign({ user, repository, route, branch, filePath });
+    } else {
+      this.assign({ user, repository, route, branch: undefined, filePath: undefined });
+    }
   }

   get href(): string {

This will trigger the condition on https://github.com/sindresorhus/refined-github/blob/b504a42cd783836b979688731a43a0a07be65bf8/source/features/useful-not-found-page.tsx#L62 and the function will return, thus not showing the incorrect link.

Let me know if this sounds like an acceptable solution. If so, I'll be happy to send in a PR.

Thanks!

Screenshot

image

Clicking on This object takes you to https://github.com/octokit/rest.js/issues/master.

Console errors

None

Example URL

https://github.com/octokit/rest.js/issues/558

Browser(s) used

Firefox


The easy solution here is to use isSingleFile || isTree (I don't remember the name) to only run those functions on blob/tree URLs, no need for custom code. The init function should be split:

  • showDefaultBranchLink, showAlternateLink: isSingleFile || isTree
  • showMissingPart: current detection is fine
posted by fregante over 3 years ago
  • showDefaultBranchLink, showAlternateLink: isSingleFile || isTree
  • showMissingPart: current detection is fine

Hmm I remember this being in the original code... My PR seems to have messed quite a bit of stuff up 😬

Will split this up and submit a PR though, thanks.

posted by gamemaker1 over 3 years ago

It did exist - commit 6047ca569d61638025a26f29a31ab9069b0dd108, line 111 of source/features/useful-not-found-page.tsx

posted by gamemaker1 over 3 years ago

Fund this Issue

$0.00
Funded

Pull requests