mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:33:09 +02:00
fix(server): prevent creation of empty antennas
This commit is contained in:
parent
a8bd3e8e53
commit
63068fc0c2
2 changed files with 5 additions and 0 deletions
|
@ -41,6 +41,7 @@ You should also include the user name that made the change.
|
||||||
- Bookwyrmのユーザーのプロフィールページで「リモートで表示」をタップしても反応がない問題を修正
|
- Bookwyrmのユーザーのプロフィールページで「リモートで表示」をタップしても反応がない問題を修正
|
||||||
- `disableCache: true`を設定している場合に絵文字管理操作でエラーが出る問題を修正
|
- `disableCache: true`を設定している場合に絵文字管理操作でエラーが出る問題を修正
|
||||||
- リテンション分析が上手く機能しないことがあるのを修正
|
- リテンション分析が上手く機能しないことがあるのを修正
|
||||||
|
- 空のアンテナが作成できないように修正
|
||||||
|
|
||||||
## 13.9.2 (2023/03/06)
|
## 13.9.2 (2023/03/06)
|
||||||
|
|
||||||
|
|
|
@ -79,6 +79,10 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
|
||||||
private globalEventService: GlobalEventService,
|
private globalEventService: GlobalEventService,
|
||||||
) {
|
) {
|
||||||
super(meta, paramDef, async (ps, me) => {
|
super(meta, paramDef, async (ps, me) => {
|
||||||
|
if (ps.keywords.length === 0) {
|
||||||
|
throw new Error('invalid param');
|
||||||
|
}
|
||||||
|
|
||||||
const currentAntennasCount = await this.antennasRepository.countBy({
|
const currentAntennasCount = await this.antennasRepository.countBy({
|
||||||
userId: me.id,
|
userId: me.id,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue