fix(server): twitterと連携するときに autwh is not a function になるのを修正

Fix #9658
This commit is contained in:
syuilo
2023-01-21 17:01:02 +09:00
parent 4b75c68753
commit 8631740ca4
2 changed files with 2 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ import { Inject, Injectable } from '@nestjs/common';
import Redis from 'ioredis';
import { v4 as uuid } from 'uuid';
import { IsNull } from 'typeorm';
import autwh from 'autwh';
import * as autwh from 'autwh';
import type { Config } from '@/config.js';
import type { UserProfilesRepository, UsersRepository } from '@/models/index.js';
import { DI } from '@/di-symbols.js';