Skip to content

Commit

Permalink
修复上传失败时不throw exception的问题 (#234)
Browse files Browse the repository at this point in the history
* 修复上传失败时不throw exception的问题
  • Loading branch information
Nukoooo authored Sep 28, 2021
1 parent d60c5f0 commit 33d943f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bilibili_api/video_uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ async def _upload_cover(self) -> str:

data = await resp.json()

if data['code'] < 0:
if data['code'] != 0:
err = ResponseCodeException(data['code'], data['message'])
self.dispatch(VideoUploaderEvents.COVER_FAILED.value, {"err": err})
raise err
Expand Down

0 comments on commit 33d943f

Please sign in to comment.