From b20a71ac60230ffe18f4602141b84d9421d5cf15 Mon Sep 17 00:00:00 2001 From: Kasper Jacobsen Date: Mon, 18 Jul 2016 21:18:28 +0200 Subject: [PATCH] Add notice about `image_url` precedence --- page_attachments.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/page_attachments.md b/page_attachments.md index 209c2e5..2e23ce6 100644 --- a/page_attachments.md +++ b/page_attachments.md @@ -102,6 +102,8 @@ A valid URL to an image file that will be displayed inside a message attachment. Large images will be resized to a maximum width of 400px or a maximum height of 500px, while still maintaining the original aspect ratio. +**Notice:** If `image_url` is supplied `thumb_url` is ignored. + ![Screenshot of an attachment with a large image](/img/api/attachment_image.png) ###thumb_url @@ -109,6 +111,8 @@ A valid URL to an image file that will be displayed as a thumbnail on the right The thumbnail's longest dimension will be scaled down to 75px while maintaining the aspect ratio of the image. The filesize of the image must also be less than 500 KB. +**Notice:** If `image_url` is supplied `thumb_url` is ignored. + ![Screenshot of an attachment with a thumbnail image](/img/api/attachment_thumb.png) ---