Skip to content

Commit

Permalink
Manual Recordings: restore date time subtitle
Browse files Browse the repository at this point in the history
Apparently removed in 5f6697e
  • Loading branch information
ulmus-scott committed Sep 25, 2022
1 parent 06da311 commit 26dfe6f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mythtv/programs/mythbackend/scheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3789,7 +3789,9 @@ void Scheduler::UpdateManuals(uint recordid)
query.bindValue(":STARTTIME", startdt);
query.bindValue(":ENDTIME", startdt.addSecs(duration));
query.bindValue(":TITLE", title);
query.bindValue(":SUBTITLE", subtitle);
query.bindValue(":SUBTITLE",
!subtitle.isEmpty() ? subtitle :
MythDate::toString(startdt, MythDate::kDatabase | MythDate::kOverrideLocal));
query.bindValue(":DESCRIPTION", description);
query.bindValue(":SEASON", season);
query.bindValue(":EPISODE", episode);
Expand Down

0 comments on commit 26dfe6f

Please sign in to comment.