fix: absolute urls for images in pixivbridge (#2993)

This commit is contained in:
Dag 2022-09-02 20:35:17 +02:00 committed by GitHub
parent 3c2353c0ec
commit f40ed566be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View file

@ -224,6 +224,6 @@ class PixivBridge extends BridgeAbstract
file_put_contents($path, $illust);
}
return 'cache/pixiv_img/' . preg_replace('/.*\//', '', $path);
return get_home_page_url() . 'cache/pixiv_img/' . preg_replace('/.*\//', '', $path);
}
}