From: Sarven Capadisli Date: Wed, 1 Jul 2009 23:18:35 +0000 (+0000) Subject: Removed extra slash X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e39b2378beabff73ec2bcfc602d6811d7787523d;p=quix0rs-gnu-social.git Removed extra slash --- diff --git a/js/util.js b/js/util.js index 92fc3a3da2..638104c1c5 100644 --- a/js/util.js +++ b/js/util.js @@ -298,7 +298,7 @@ function NoticeAttachments() { if (anchor.children('img').length == 0) { t = setTimeout(function() { - $.get($('address .url')[0].href+'/attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) { + $.get($('address .url')[0].href+'attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) { anchor.append(data); }); }, 500);