Skip to content

Commit

Permalink
fix: cellid reference in model constructing
Browse files Browse the repository at this point in the history
  • Loading branch information
JamzumSum committed Mar 28, 2023
1 parent 5f297fa commit c7ff029
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aioqzone-feed"
version = "0.13.4.dev2"
version = "0.13.4.dev3"
description = "aioqzone plugin providing higher level api for processing feed."
authors = ["aioqzone <[email protected]>"]
license = "AGPL-3.0"
Expand Down
4 changes: 2 additions & 2 deletions src/aioqzone_feed/type.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def _(cls, obj: FeedData, **kwds):
return cls(
appid=obj.common.appid,
typeid=obj.common.typeid,
fid=obj.cellid,
fid=obj.fid,
abstime=obj.abstime,
uin=obj.userinfo.uin,
nickname=obj.userinfo.nickname,
Expand Down Expand Up @@ -253,7 +253,7 @@ def _set_detail_from_feeddata(self, obj: FeedData):
entities=split_entities(org.summary.summary),
appid=org.common.appid,
typeid=org.common.typeid,
fid=org.cellid,
fid=org.fid,
abstime=org.common.time,
uin=org.userinfo.uin,
nickname=org.userinfo.nickname,
Expand Down

0 comments on commit c7ff029

Please sign in to comment.