1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-28 05:55:05 +01:00

Merge branch 'fix/activitypub-user-view-badmap' into 'develop'

Fix if clause in activity_pub user_view

See merge request pleroma/pleroma!783
This commit is contained in:
rinpatch 2019-02-06 17:47:58 +00:00
commit f7aedbcc55

View File

@ -239,6 +239,8 @@ defmodule Pleroma.Web.ActivityPub.UserView do
if offset < total do
Map.put(map, "next", "#{iri}?page=#{page + 1}")
else
map
end
end
end