Skip to content

Commit

Permalink
Correct mid definition
Browse files Browse the repository at this point in the history
  • Loading branch information
xfangfang committed May 21, 2024
1 parent b553bcc commit 418971e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wiliwili/include/api/bilibili/result/mine_later_result.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace bilibili {
class Up {
public:
std::string name;
int mid;
uint64_t mid;
};
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Up, name, mid);

Expand Down
2 changes: 1 addition & 1 deletion wiliwili/include/api/bilibili/result/mine_result.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ inline void from_json(const nlohmann::json& nlohmann_json_j, UserDynamicCount& n

class UserRelationStat {
public:
unsigned int mid, following, black, follower;
uint64_t mid, following, black, follower;
};
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(UserRelationStat, mid, following, black, follower);

Expand Down

0 comments on commit 418971e

Please sign in to comment.