From 7e06b5a1629cce9a412b2aab69c4d840d9765105 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 20 Jun 2019 00:29:10 +0100 Subject: [PATCH] Increase height of forum embeds --- RIGS/rigboard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RIGS/rigboard.py b/RIGS/rigboard.py index 82bb29dc..b697ad85 100644 --- a/RIGS/rigboard.py +++ b/RIGS/rigboard.py @@ -66,10 +66,10 @@ class EventOembed(generic.View): full_url = "{0}://{1}{2}".format(request.scheme, request.META['HTTP_HOST'], embed_url) data = { - 'html': ''.format(full_url), + 'html': ''.format(full_url), 'version': '1.0', 'type': 'rich', - 'height': '250' + 'height': '350' } json = simplejson.JSONEncoderForHTML().encode(data)