We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0d8f34 commit 5d7000cCopy full SHA for 5d7000c
1 file changed
app/modules/ani2alist/ani2alist.py
@@ -178,16 +178,16 @@ async def update_data(_url: str, _url_dict: dict):
178
179
if mimeType in FILE_MINETYPE:
180
size: str = file["size"]
181
- modifed_time_stamp: str = str(
182
- __parse2timestamp(file["modifiedTime"])
+ created_time_stamp: str = str(
+ __parse2timestamp(file["createdTime"])
183
)
184
__url = _url + quoted_name + "?d=true"
185
logger.debug(
186
f"获取文件:{name},文件大小:{int(size) / 1024 / 1024:.2f}MB,播放地址:{__url}"
187
188
_url_dict[name] = [
189
size,
190
- modifed_time_stamp,
+ created_time_stamp,
191
__url,
192
]
193
elif mimeType == "application/vnd.google-apps.folder":
0 commit comments