Skip to content

Commit

Permalink
core: bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
undefined-moe committed Oct 24, 2024
1 parent 751288e commit 0bc1729
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Hydro 用户群:1085853538
<details>
<summary><h2>更新日志(点击展开)</h2></summary>

## Hydro 4.17.2 / UI 4.55.2
## Hydro 4.17.3 / UI 4.55.2

- core: 限制显示名长度
- core: 支持调整代码长度限制
Expand All @@ -124,6 +124,7 @@ Hydro 用户群:1085853538
- core: 支持 StorageModel.copy 和 StorageModel.exists
- core: 弃用 ProblemModel.list
- core: 添加 user/import/parse 和 user/import/create 钩子
- core: 优化题目列表查询性能

## Hydro 4.16.0 / UI 4.54.3

Expand Down
2 changes: 1 addition & 1 deletion packages/hydrooj/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hydrooj",
"version": "4.17.2",
"version": "4.17.3",
"bin": "bin/hydrooj.js",
"main": "src/plugin-api",
"module": "src/plugin-api",
Expand Down
12 changes: 7 additions & 5 deletions packages/hydrooj/src/handler/home.ts
Original file line number Diff line number Diff line change
Expand Up @@ -368,11 +368,13 @@ function set(s: Setting, key: string, value: any) {
if (Number.isNaN(+value)) throw new ValidationError(key);
return +value;
}
if (['json', 'yaml', 'markdown', 'textarea'].includes(s.type)) {
if (!Types.Content[1](value)) throw new ValidationError(key);
}
if (s.type === 'text') {
if (!Types.ShortString[1](value)) throw new ValidationError(key);
if (value) {
if (['json', 'yaml', 'markdown', 'textarea'].includes(s.type)) {
if (!Types.Content[1](value)) throw new ValidationError(key);
}
if (s.type === 'text') {
if (!Types.ShortString[1](value)) throw new ValidationError(key);
}
}
if (s.subType === 'yaml') {
try {
Expand Down
2 changes: 1 addition & 1 deletion packages/hydrooj/src/handler/homework.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class HomeworkDetailHandler extends Handler {
Object.assign(this.response.body, { pdict, psdict, rdict });
}

async postAttend(domainId: string) {
async postAttend({ domainId }) {
this.checkPerm(PERM.PERM_ATTEND_HOMEWORK);
if (contest.isDone(this.tdoc)) throw new HomeworkNotLiveError(this.tdoc.docId);
await contest.attend(domainId, this.tdoc.docId, this.user._id);
Expand Down

0 comments on commit 0bc1729

Please sign in to comment.