This commit is contained in:
Aria Moradi
2021-08-26 22:20:35 +04:30
parent 9f6a76c224
commit cf71f16ea9
2 changed files with 3 additions and 1 deletions

View File

@@ -233,7 +233,7 @@ export default function MangaDetails(props: IProps) {
</IconButton>
</div>
{ /* eslint-disable-next-line react/jsx-no-target-blank */ }
<a href={manga.url} target="_blank">
<a href={manga.realUrl} target="_blank">
<IconButton>
<PublicIcon />
<span>Open Site</span>

2
src/typings.d.ts vendored
View File

@@ -52,6 +52,8 @@ interface IManga {
inLibrary: boolean
source: ISource
realUrl: string
freshData: boolean
}