Skip to content

Commit

Permalink
添加更新日志
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerry committed May 9, 2024
1 parent f82aaac commit 8471c75
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion release.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
### v0.1.2 发布了 2024-0-5-07
### v0.1.3 发布了 2024-05-09
- 配置改为通过界面配置,实时生效,无需重启了
- 优化视频的展示效果

### v0.1.2 发布了 2024-05-07
- 支持上传本地视频,请耐心等待上传.
- 修复能发空内容的问题.
- 自定义js里支持了特殊字符
Expand Down
2 changes: 1 addition & 1 deletion server/api/comment/save.post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const emailReg =

export default defineEventHandler(async (event) => {
const config = ((await fs.readFile(`${process.env.CONFIG_FILE}`)).toString())
const sysConfig = JSON.parse(config).private as SysConfig
const sysConfig = JSON.parse(config) as SysConfig
const request = (await readBody(event)) as SaveCommentReq;
const { content, email, memoId, replyToId, username, website, token } =
request;
Expand Down

0 comments on commit 8471c75

Please sign in to comment.