diff options
| author | real-zephex <[email protected]> | 2024-04-26 10:08:41 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-26 10:08:41 +0530 |
| commit | 2994a41df0c0acfa04c3db93d8d7ddfc6cc2bea8 (patch) | |
| tree | 4860257af03fc7fdda08f6a3105ec45bd95763f5 /src | |
| parent | the image proxy was not working for some reason so switched it to shashstrom'... (diff) | |
| download | dramalama-2994a41df0c0acfa04c3db93d8d7ddfc6cc2bea8.tar.xz dramalama-2994a41df0c0acfa04c3db93d8d7ddfc6cc2bea8.zip | |
fixes: fixed the image proxy
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/manga/[title]/[id]/[read]/page.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/page.jsx b/src/app/manga/[title]/[id]/[read]/page.jsx index 733786e..957241f 100644 --- a/src/app/manga/[title]/[id]/[read]/page.jsx +++ b/src/app/manga/[title]/[id]/[read]/page.jsx @@ -33,7 +33,7 @@ export default async function Read({ params }) { images.map((item, index) => (
<div className={styles.Image} key={index}>
<Image
- src={`https://cros.shashstorm.in/cors?url=${item}`}
+ src={`https://sup-proxy.zephex0-f6c.workers.dev/api-content?url=${item}&headers=https://mangadex.org`}
key={index}
alt="Pages"
width={800}
|