aboutsummaryrefslogtreecommitdiff
path: root/src/services/api/api.service.js
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2020-04-23 14:11:48 +0300
committerShpuld Shpuldson <shp@cock.li>2020-04-23 14:11:48 +0300
commit99d8e16e4d19acbd811a9e19e087eeed04f7b638 (patch)
tree895b7d9b4e2345f5be93711faf0785b00a615130 /src/services/api/api.service.js
parentce0a1e7ad134089f62835fc0f9f015fed673766b (diff)
remove with_relationships as it doesn't help
Diffstat (limited to 'src/services/api/api.service.js')
-rw-r--r--src/services/api/api.service.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js
index ee6bf151..7db1d094 100644
--- a/src/services/api/api.service.js
+++ b/src/services/api/api.service.js
@@ -496,8 +496,7 @@ const fetchTimeline = ({
userId = false,
tag = false,
withMuted = false,
- withMove = false,
- withRelationships = false
+ withMove = false
}) => {
const timelineUrls = {
public: MASTODON_PUBLIC_TIMELINE,
@@ -543,7 +542,6 @@ const fetchTimeline = ({
params.push(['count', 20])
params.push(['with_muted', withMuted])
- params.push(['with_relationships', withRelationships])
const queryString = map(params, (param) => `${param[0]}=${param[1]}`).join('&')
url += `?${queryString}`