[Xfce4-commits] [apps/xfce4-screenshooter] 01/02: Fix thumbnail link error/inversion (thx to Evangelos Foutras for the report!)
noreply at xfce.org
noreply at xfce.org
Tue Dec 16 23:05:22 CET 2014
This is an automated email from the git hooks/post-receive script.
landry pushed a commit to branch master
in repository apps/xfce4-screenshooter.
commit e4f54dceaae9c64ad2575979ee3ec827d1163fed
Author: Landry Breuil <landry at xfce.org>
Date: Tue Dec 16 22:02:48 2014 +0100
Fix thumbnail link error/inversion (thx to Evangelos Foutras for the report!)
---
lib/screenshooter-imgur.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/screenshooter-imgur.c b/lib/screenshooter-imgur.c
index 5243962..b53cb12 100644
--- a/lib/screenshooter-imgur.c
+++ b/lib/screenshooter-imgur.c
@@ -204,9 +204,9 @@ static void cb_image_uploaded (ScreenshooterJob *job,
image_url = g_strdup_printf ("http://i.imgur.com/%s.png", upload_name);
thumbnail_url =
- g_strdup_printf ("http://imgur.com/%ss.png", upload_name);
+ g_strdup_printf ("http://imgur.com/%sl.png", upload_name);
small_thumbnail_url =
- g_strdup_printf ("http://imgur.com/%s1.png", upload_name);
+ g_strdup_printf ("http://imgur.com/%ss.png", upload_name);
image_markup =
g_markup_printf_escaped (_("<a href=\"%s\">Full size image</a>"), image_url);
thumbnail_markup =
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list