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

@ -24,6 +24,7 @@ You should also include the user name that made the change.
### Bugfixes ### Bugfixes
- playを削除する手段がなかったのを修正 - playを削除する手段がなかったのを修正
- The … button on notes does nothing when not logged in - The … button on notes does nothing when not logged in
- twitterと連携するときに autwh is not a function になるのを修正
## 13.0.0 (2023/01/16) ## 13.0.0 (2023/01/16)

View File

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