Skip to content

Commit

Permalink
fix: video_uploader.py
Browse files Browse the repository at this point in the history
self.porder.__dict__()
  • Loading branch information
z0z0r4 authored Mar 11, 2024
1 parent 70d492d commit 0272d9c
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 @@ -580,7 +580,7 @@ def __dict__(self) -> dict:
"interactive": 0,
"act_reserve_create": 0, # unknown
"no_disturbance": 0, # unknown
"porder": self.porder.__dict__(),
"porder": None if self.proder is None else self.porder.__dict__(),
"adorder_type": 9, # unknown
"no_reprint": 1 if self.no_reprint else 0,
"subtitle": self.subtitle
Expand Down

0 comments on commit 0272d9c

Please sign in to comment.