We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fefdbee commit cef8abcCopy full SHA for cef8abc
src/lib/link-parser.ts
@@ -82,7 +82,7 @@ export const isSelfArticleUrl = (url: URL) => {
82
83
if (isDev && url.hostname === 'innei.in') return true
84
return (
85
- (url.hostname === location.hostname || webHost === location.hostname) &&
+ (url.hostname === location.hostname || webHost === url.hostname) &&
86
['/posts/', '/notes/'].some((path) => url.pathname.startsWith(path))
87
)
88
}
0 commit comments