Fix build. Too eager with the fixing of unused variables.

== Compilation error in file lib/pleroma/web/activity_pub/views/user_view.ex ==
** (CompileError) lib/pleroma/web/activity_pub/views/user_view.ex:54: undefined function _total/0
    (stdlib) lists.erl:1338: :lists.foreach/2
    (stdlib) erl_eval.erl:670: :erl_eval.do_apply/6
This commit is contained in:
Mark Felder 2018-05-04 21:26:33 +00:00
parent 636f0fa402
commit 42f1a098aa
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ defmodule Pleroma.Web.ActivityPub.UserView do
offset = (page - 1) * 10
items = Enum.slice(collection, offset, 10)
items = Enum.map(items, fn user -> user.ap_id end)
_total = _total || length(collection)
total = _total || length(collection)
map = %{
"id" => "#{iri}?page=#{page}",