Skip to content
Snippets Groups Projects
Unverified Commit 6b467fd5 authored by Chocobozzz's avatar Chocobozzz
Browse files

Fix tls and account bug

parent d7e70384
No related branches found
No related tags found
No related merge requests found
// FIXME: https://github.com/nodejs/node/pull/16853
require('tls').DEFAULT_ECDH_CURVE = 'auto'
import { isTestInstance } from './server/helpers/core-utils'
if (isTestInstance()) {
......
......@@ -9,7 +9,7 @@ import { isTestInstance, root, sanitizeHost, sanitizeUrl } from '../helpers/core
// ---------------------------------------------------------------------------
const LAST_MIGRATION_VERSION = 155
const LAST_MIGRATION_VERSION = 160
// ---------------------------------------------------------------------------
......
import * as Sequelize from 'sequelize'
async function up (utils: {
transaction: Sequelize.Transaction,
queryInterface: Sequelize.QueryInterface,
sequelize: Sequelize.Sequelize
}): Promise<void> {
{
const toReplace = ':443'
const by = ''
const replacer = column => `replace("${column}", '${toReplace}', '${by}')`
const query = `
UPDATE actor SET url = ${replacer('url')}, "inboxUrl" = ${replacer('inboxUrl')}, "outboxUrl" = ${replacer('outboxUrl')},
"sharedInboxUrl" = ${replacer('sharedInboxUrl')}, "followersUrl" = ${replacer('followersUrl')},
"followingUrl" = ${replacer('followingUrl')}
`
await utils.sequelize.query(query)
}
{
const toReplace = '/account/'
const by = '/accounts/'
const replacer = column => `replace("${column}", '${toReplace}', '${by}')`
const query = `
UPDATE actor SET url = ${replacer('url')}, "inboxUrl" = ${replacer('inboxUrl')}, "outboxUrl" = ${replacer('outboxUrl')},
"sharedInboxUrl" = ${replacer('sharedInboxUrl')}, "followersUrl" = ${replacer('followersUrl')},
"followingUrl" = ${replacer('followingUrl')}
`
await utils.sequelize.query(query)
}
}
function down (options) {
throw new Error('Not implemented.')
}
export {
up,
down
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment