Skip to content

Commit

Permalink
fix: 修复了个人/圈子动态不返回第三张以后的图片的问题 (DIYgod#2082)
Browse files Browse the repository at this point in the history
修复了个人/圈子动态不返回第三张以后的图片的问题
尝试使用更新的版本号时,返回的结果不单纯按照时间排序,而经过推荐分发
  • Loading branch information
Maecenas authored and DIYgod committed May 8, 2019
1 parent a8afe76 commit a84e67a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/routes/jike/topic.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = async (ctx) => {
url: 'https://app.jike.ruguoapp.com/1.0/messages/history',
headers: {
Referer: `https://m.okjike.com/topics/${id}`,
'App-Version': '4.1.0',
'App-Version': '4.12.0',
},
data: {
loadMoreKey: null,
Expand Down
2 changes: 1 addition & 1 deletion lib/routes/jike/topicSquare.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = async (ctx) => {
url: 'https://app.jike.ruguoapp.com/1.0/squarePosts/list',
headers: {
Referer: `https://m.okjike.com/topics/${id}`,
'App-Version': '4.1.0',
'App-Version': '4.12.0',
},
data: {
loadMoreKey: null,
Expand Down
2 changes: 1 addition & 1 deletion lib/routes/jike/topicText.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = async (ctx) => {
url: 'https://app.jike.ruguoapp.com/1.0/messages/history',
headers: {
Referer: `https://m.okjike.com/topics/${id}`,
'App-Version': '4.1.0',
'App-Version': '4.12.0',
},
data: {
loadMoreKey: null,
Expand Down
2 changes: 1 addition & 1 deletion lib/routes/jike/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = async (ctx) => {
url: 'https://app.jike.ruguoapp.com/1.0/personalUpdate/single',
headers: {
Referer: `https://web.okjike.com/user/${id}/post`,
'App-Version': '4.1.0',
'App-Version': '4.12.0',
platform: 'web',
},
data: {
Expand Down

0 comments on commit a84e67a

Please sign in to comment.