Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: theme subject details #651

Merged
merged 2 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading