replace var by const

This commit is contained in:
Hakaba Hitoyo 2018-10-06 17:38:57 +09:00
parent 96d961ee80
commit 2b7782ba03

View File

@ -18,12 +18,12 @@ export const meta = {
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => { export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
if (config.user_recommendation && config.user_recommendation.external) { if (config.user_recommendation && config.user_recommendation.external) {
var userName = me.username const userName = me.username
var hostName = config.hostname const hostName = config.hostname
var limit = params.limit const limit = params.limit
var offset = params.offset const offset = params.offset
var timeout = config.user_recommendation.timeout const timeout = config.user_recommendation.timeout
var engine = config.user_recommendation.engine const engine = config.user_recommendation.engine
const url = engine const url = engine
.replace('{{host}}', hostName) .replace('{{host}}', hostName)
.replace('{{user}}', userName) .replace('{{user}}', userName)