diff options
-rw-r--r-- | lib/serve.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/serve.js b/lib/serve.js index 397a148..d09082d 100644 --- a/lib/serve.js +++ b/lib/serve.js @@ -4718,12 +4718,12 @@ Serve.prototype.composer = function (opts, cb) { 'emoji ', h('q', link.name), ' (', h('code', String(link.link).substr(0, 8) + '…'), ')' + ' is >10KB')) - } else if (link.link[0] === '&' && link.size >= 10e6 && link.type) { - // if link.type is set, we probably just uploaded this blob + } else if (link.link[0] === '&' && link.size >= 5242880) { warnings.push(h('li', - 'attachment ', + 'linked blob ', h('code', String(link.link).substr(0, 8) + '…'), - ' is >10MB')) + ' (', h('code', self.app.render.formatSize(link.size)), ')', + ' is larger than 5MB')) } }) |