diff options
author | 2021-11-09 12:36:57 +0100 | |
---|---|---|
committer | 2021-11-09 12:36:57 +0100 | |
commit | e375fde56a3387d17af3c27144dfa15b1239e1fa (patch) | |
tree | e8311b233321ef007d5b436a90698850eefd7e49 /source/features/patch-diff-links.tsx | |
parent | 1d47afba1f4a0e3f853cb61d424694c83daa7865 (diff) | |
download | refined-github-e375fde56a3387d17af3c27144dfa15b1239e1fa.tar.gz refined-github-e375fde56a3387d17af3c27144dfa15b1239e1fa.tar.zst refined-github-e375fde56a3387d17af3c27144dfa15b1239e1fa.zip |
Meta: Replace `__filebasename` with `import.meta.url` (#5058)
Co-authored-by: Federico Brigante <me@fregante.com>
Diffstat (limited to 'source/features/patch-diff-links.tsx')
-rw-r--r-- | source/features/patch-diff-links.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/patch-diff-links.tsx b/source/features/patch-diff-links.tsx index 21038bba..04867c0d 100644 --- a/source/features/patch-diff-links.tsx +++ b/source/features/patch-diff-links.tsx @@ -20,7 +20,7 @@ function init(): void { ); } -void features.add(__filebasename, { +void features.add(import.meta.url, { include: [ pageDetect.isCommit, ], |