logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: ac9985aedbc2ed53121eec06a95013186c4eefd4
parent: 32ab69fe0ec5046df35c44f6212e79c49bf449c3
Author: Shpuld Shpludson <shp@cock.li>
Date:   Tue, 14 Apr 2020 16:57:42 +0000

Merge branch 'fix-pagination' into 'develop'

Fix pagination

See merge request pleroma/pleroma-fe!1089

Diffstat:

Msrc/services/api/api.service.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js @@ -540,7 +540,7 @@ const fetchTimeline = ({ params.push(['with_move', withMove]) } - params.push(['count', 20]) + params.push(['limit', 20]) params.push(['with_muted', withMuted]) const queryString = map(params, (param) => `${param[0]}=${param[1]}`).join('&')