mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:33:09 +02:00
fix(server): 空のアンテナが作成できるのを修正
This commit is contained in:
parent
f01e6ef6bf
commit
ab26a8016d
2 changed files with 2 additions and 1 deletions
|
@ -22,6 +22,7 @@
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
- リモートユーザーのチャート生成を無効にするオプションを追加
|
- リモートユーザーのチャート生成を無効にするオプションを追加
|
||||||
|
- 空のアンテナが作成できるのを修正
|
||||||
|
|
||||||
## 13.10.2
|
## 13.10.2
|
||||||
|
|
||||||
|
|
|
@ -79,7 +79,7 @@ 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) {
|
if ((ps.keywords.length === 0) || (ps.keywords[0].filter(x => x !== '').length === 0)) {
|
||||||
throw new Error('invalid param');
|
throw new Error('invalid param');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue