Skip to content

Commit

Permalink
Fix the bug that fail to load gallery cover
Browse files Browse the repository at this point in the history
修复里站画廊封面无法显示的问题
  • Loading branch information
jiangtian616 committed May 16, 2023
1 parent 9dbcc70 commit 9a62ef8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
22 changes: 12 additions & 10 deletions changelog/v7.1.2+127.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
1. EH设置页中支持查看当前资产余额
2. EH设置页中支持重置图片配额
3. 修复归档dialog中gp和credit显示错误的bug
4. 正确处理在下载过程中画廊被删除的情况
5. 修复超分辨率图片初始化的bug
1. 修复里站画廊封面无法显示的问题
2. EH设置页中支持查看当前资产余额
3. EH设置页中支持重置图片配额
4. 修复归档dialog中gp和credit显示错误的bug
5. 正确处理在下载过程中画廊被删除的情况
6. 修复超分辨率图片初始化的bug

------------------------------------------------------------------------------------------

1. Display your credits and GP in EH Setting page
2. Support resetting image limit in EH Setting page
3. Fix the bug with gp & credit display in archive dialog
4. Fix the bug when a gallery is deleted while being downloaded
5. Fix the bug with super resolution
1. Fix the bug that fail to load gallery cover
2. Display your credits and GP in EH Setting page
3. Support resetting image limit in EH Setting page
4. Fix the bug with gp & credit display in archive dialog
5. Fix the bug when a gallery is deleted while being downloaded
6. Fix the bug with super resolution
2 changes: 1 addition & 1 deletion lib/src/widget/eh_image.dart
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ class EHImage extends StatelessWidget {
String _replaceEXUrl(String url) {
Uri rawUri = Uri.parse(url);
String host = rawUri.host;
if (host != 'exhentai.org') {
if (host != 's.exhentai.org' && host != 'exhentai.org') {
return url;
}

Expand Down

0 comments on commit 9a62ef8

Please sign in to comment.