From 13530f3611aa8304783ff9a0e60e1f45c7fa61e6 Mon Sep 17 00:00:00 2001
From: Thomas Citharel <tcit@tcit.fr>
Date: Wed, 18 Dec 2019 10:11:50 +0100
Subject: [PATCH 1/2] Fix pagination for relays

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
---
 js/src/mixins/relay.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/js/src/mixins/relay.ts b/js/src/mixins/relay.ts
index e008479dc..c26f2b412 100644
--- a/js/src/mixins/relay.ts
+++ b/js/src/mixins/relay.ts
@@ -11,7 +11,7 @@ export default class RelayMixin extends Vue {
 
   checkedRows: IFollower[] = [];
   page: number = 1;
-  perPage: number = 2;
+  perPage: number = 10;
 
   toggle(row) {
     this.$refs.table.toggleDetails(row);

From 846b4e9b7709df6b601ed81ec5f1478ef62a94c4 Mon Sep 17 00:00:00 2001
From: Thomas Citharel <tcit@tcit.fr>
Date: Wed, 18 Dec 2019 10:11:59 +0100
Subject: [PATCH 2/2] Fix event html representation with no Accept header

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
---
 lib/mobilizon_web/router.ex | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/mobilizon_web/router.ex b/lib/mobilizon_web/router.ex
index 369a6d789..363976b3e 100644
--- a/lib/mobilizon_web/router.ex
+++ b/lib/mobilizon_web/router.ex
@@ -14,7 +14,6 @@ defmodule MobilizonWeb.Router do
   end
 
   pipeline :activity_pub_signature do
-    plug(:accepts, ["activity-json", "html"])
     plug(MobilizonWeb.HTTPSignaturePlug)
     plug(MobilizonWeb.Plugs.MappedSignatureToIdentity)
   end