Skip to content

Commit

Permalink
fix: theme subject details (#651)
Browse files Browse the repository at this point in the history
* fix: theme subject details

* docs: update CHANGELOG.MD
  • Loading branch information
ChiveHao committed Aug 14, 2024
1 parent a71fa16 commit c3ac922
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

更新日志文档,版本顺序从新到旧,最新版本在最前(上)面。

# 0.15.4

## 主题

- 修复默认主题剧集序号选择问题

# 0.15.3

## 问题修复
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.15.3
version=0.15.4
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public Mono<String> index(Model model, Integer page, Integer size, SubjectType t
*/
@GetMapping("/{id}")
public Mono<String> findById(@PathVariable("id") Long id,
@RequestParam("episode") Integer epSeq, Model model) {
@RequestParam("episode") Float epSeq, Model model) {
return subjectService.findById(id)
.flatMap(subject -> addEpisodesResourcesAttachmentIdSubtitleMap2Model(subject, model))
.map(subject -> model.addAttribute("subject", subject))
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/resources/templates/simple
Submodule simple updated 2 files
+15 −10 subject-details.html
+1 −1 subjects.html

0 comments on commit c3ac922

Please sign in to comment.