0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 17:36:49 +01:00

get_embed never returns None

This commit is contained in:
Karl Hobley 2015-06-05 14:21:02 +01:00
parent 00d558c9be
commit 0dc4cbcf21

View File

@ -8,20 +8,18 @@ from wagtail.wagtailembeds import embeds
def embed_to_frontend_html(url):
try:
embed = embeds.get_embed(url)
if embed is not None:
# Work out ratio
if embed.width and embed.height:
ratio = str(embed.height / embed.width * 100) + "%"
else:
ratio = "0"
# Render template
return render_to_string('wagtailembeds/embed_frontend.html', {
'embed': embed,
'ratio': ratio,
})
# Work out ratio
if embed.width and embed.height:
ratio = str(embed.height / embed.width * 100) + "%"
else:
return ''
ratio = "0"
# Render template
return render_to_string('wagtailembeds/embed_frontend.html', {
'embed': embed,
'ratio': ratio,
})
except embeds.EmbedNotFoundException:
return ''
@ -29,8 +27,6 @@ def embed_to_frontend_html(url):
def embed_to_editor_html(url):
try:
embed = embeds.get_embed(url)
if embed is None:
return
# Render template
return render_to_string('wagtailembeds/embed_editor.html', {