修复tag原文显示问题

更新依赖
This commit is contained in:
2024-05-24 14:42:18 +08:00
parent ebccce7f3d
commit c9d5d965ad
15 changed files with 128 additions and 115 deletions

View File

@@ -29,7 +29,7 @@ Map<String, dynamic> _$GalleryMetadataTorrentInfoToJson(
GalleryMetadataSingle _$GalleryMetadataSingleFromJson(
Map<String, dynamic> json) =>
GalleryMetadataSingle(
gid: json['gid'] as int,
gid: (json['gid'] as num).toInt(),
token: json['token'] as String,
archiverKey: json['archiver_key'] as String,
title: json['title'] as String,
@@ -39,7 +39,7 @@ GalleryMetadataSingle _$GalleryMetadataSingleFromJson(
uploader: json['uploader'] as String,
posted: json['posted'] as String,
filecount: json['filecount'] as String,
filesize: json['filesize'] as int,
filesize: (json['filesize'] as num).toInt(),
expunged: json['expunged'] as bool,
rating: json['rating'] as String,
torrentcount: json['torrentcount'] as String,