diff options
author | Mark Felder <feld@FreeBSD.org> | 2019-05-29 08:06:26 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2019-05-29 08:06:26 -0500 |
commit | 672fddb7213b69f3ee8b9a7728426373090847ed (patch) | |
tree | 0db74c552affba60669fd571d77c9a6f0cc2d995 | |
parent | 57e58d26029388a5831cd2ac3fbc419c27c4d7c6 (diff) | |
download | pleroma-672fddb7213b69f3ee8b9a7728426373090847ed.tar.gz |
Default search limit should be 40
https://docs.joinmastodon.org/api/rest/search/
-rw-r--r-- | lib/pleroma/web/mastodon_api/mastodon_api_controller.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex index 0fe09c285..2110027c3 100644 --- a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex +++ b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex @@ -1084,7 +1084,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do from([a, o] in Activity.with_preloaded_object(Activity), where: fragment("?->>'type' = 'Create'", a.data), where: "https://www.w3.org/ns/activitystreams#Public" in a.recipients, - limit: 20 + limit: 40 ) q = |