Commit 5a8a31c7e4523ef4de4c20e28443f9ea18961ce4
Allow specifying img_base without prefix
cel committed on 11/16/2017, 4:01:43 PMParent: 3652f333b559c988ab93f1454a240588b47a598f
Files changed
lib/app.js | changed |
lib/render.js | changed |
lib/app.js | ||
---|---|---|
@@ -33,9 +33,9 @@ | ||
33 | 33 … | var base = conf.base || '/' |
34 | 34 … | this.opts = { |
35 | 35 … | base: base, |
36 | 36 … | blob_base: conf.blob_base || conf.img_base || base, |
37 | - img_base: conf.img_base || base, | |
37 … | + img_base: conf.img_base || (base + 'image/'), | |
38 | 38 … | emoji_base: conf.emoji_base || (base + 'emoji/'), |
39 | 39 … | encode_msgids: conf.encode_msgids == null ? true : Boolean(conf.encode_msgids), |
40 | 40 … | } |
41 | 41 … |
lib/render.js | ||
---|---|---|
@@ -145,9 +145,9 @@ | ||
145 | 145 … | Render.prototype.imageUrl = function (ref) { |
146 | 146 … | var m = /^blobstore:(.*)/.exec(ref) |
147 | 147 … | if (m) ref = m[1] |
148 | 148 … | ref = ref.replace(/#/, '%23') |
149 | - return this.opts.img_base + 'image/' + ref | |
149 … | + return this.opts.img_base + ref | |
150 | 150 … | } |
151 | 151 … | |
152 | 152 … | Render.prototype.getImageAlt = function (id, fallback) { |
153 | 153 … | var link = this._mentionsByLink[id] |
Built with git-ssb-web