Skip to content

Commit

Permalink
fix: 视频详情简介显示重复内容
Browse files Browse the repository at this point in the history
  • Loading branch information
yichengchen committed Nov 9, 2024
1 parent 1cf42a0 commit 220afc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class VideoDetailViewController: UIViewController {

var notes = [String]()
let status = data.View.dynamic ?? ""
if status.count > 1 {
if status.count > 1, status != data.View.desc {
notes.append(status)
}
notes.append(data.View.desc ?? "")
Expand Down

0 comments on commit 220afc9

Please sign in to comment.