mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 00:13:09 +02:00
parent
4b75c68753
commit
8631740ca4
2 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||||
|
|
||||||
|
|
|
@ -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';
|
||||||
|
|
Loading…
Reference in a new issue