mirror of
https://github.com/venera-app/venera.git
synced 2025-09-27 07:47:24 +00:00
fix #97
This commit is contained in:
@@ -145,7 +145,7 @@ class ComicDetails with HistoryMixin {
|
||||
|
||||
final int? likesCount;
|
||||
|
||||
final int? commentsCount;
|
||||
final int? commentCount;
|
||||
|
||||
final String? uploader;
|
||||
|
||||
@@ -189,7 +189,7 @@ class ComicDetails with HistoryMixin {
|
||||
subId = json["subId"],
|
||||
likesCount = json["likesCount"],
|
||||
isLiked = json["isLiked"],
|
||||
commentsCount = json["commentsCount"],
|
||||
commentCount = json["commentCount"],
|
||||
uploader = json["uploader"],
|
||||
uploadTime = json["uploadTime"],
|
||||
updateTime = json["updateTime"],
|
||||
@@ -216,7 +216,7 @@ class ComicDetails with HistoryMixin {
|
||||
"subId": subId,
|
||||
"isLiked": isLiked,
|
||||
"likesCount": likesCount,
|
||||
"commentsCount": commentsCount,
|
||||
"commentsCount": commentCount,
|
||||
"uploader": uploader,
|
||||
"uploadTime": uploadTime,
|
||||
"updateTime": updateTime,
|
||||
|
Reference in New Issue
Block a user