Skip to content

Commit 1bdd9b2

Browse files
committed
[release] Patch for version 2025.10.09
1 parent aee029b commit 1bdd9b2

File tree

10 files changed

+837
-883
lines changed

10 files changed

+837
-883
lines changed

lib/modules/chapter.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ class Chapter {
3232
return Chapter(
3333
title: titleMatch?.group(1) ?? '',
3434
url: urlMatch?.group(1) ?? '',
35-
coverUrl: coverMatch?.group(1) ?? 'https://ln.hako.vn/img/nocover.jpg',
35+
coverUrl: coverMatch?.group(1) ?? 'https://docln.sbs/img/nocover.jpg',
3636
seriesTitle: seriesTitleMatch?.group(1) ?? '',
3737
seriesUrl: '', // Extract from series link
3838
volumeTitle: volumeTitleMatch?.group(1),
3939
);
4040
}
41-
}
41+
}

lib/modules/light_novel.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class LightNovel {
3333
return LightNovel(
3434
id: json['id'] ?? '',
3535
title: json['title'] ?? '',
36-
coverUrl: json['coverUrl'] ?? 'https://ln.hako.vn/img/nocover.jpg',
36+
coverUrl: json['coverUrl'] ?? 'https://docln.sbs/img/nocover.jpg',
3737
url: json['url'] ?? '',
3838
chapters: json['chapters'],
3939
latestChapter: json['latestChapter'],

0 commit comments

Comments
 (0)