Skip to content

Commit

Permalink
Merge pull request #414 from phunkyfish/autotimer-match-from-start-ma…
Browse files Browse the repository at this point in the history
…trix

Autotimer match from start - Matrix
  • Loading branch information
phunkyfish committed Jan 6, 2023
2 parents edbdac2 + 889a1eb commit 211b88b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pvr.vuplus/addon.xml.in
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.vuplus"
version="19.0.0"
version="19.0.1"
name="Enigma2 Client"
provider-name="Joerg Dembski and Ross Nicholson">
<requires>@ADDON_DEPENDS@
Expand Down
3 changes: 3 additions & 0 deletions pvr.vuplus/changelog.txt
@@ -1,3 +1,6 @@
v19.0.1
- Always match auto timers from start then when not doing a full text search. Then episodes like finals etc. will still be caught by the autotimer.

v19.0.0
- Translations updates from Weblate
- ko_kr, uk_ua
Expand Down
2 changes: 1 addition & 1 deletion src/enigma2/Timers.cpp
Expand Up @@ -613,7 +613,7 @@ PVR_ERROR Timers::AddAutoTimer(const kodi::addon::PVRTimer& timer)
if (timer.GetFullTextEpgSearch())
strTmp += StringUtils::Format("&searchType=%s", WebUtils::URLEncodeInline(AUTOTIMER_SEARCH_TYPE_DESCRIPTION).c_str());
else
strTmp += StringUtils::Format("&searchType=%s", WebUtils::URLEncodeInline(AUTOTIMER_SEARCH_TYPE_EXACT).c_str());
strTmp += StringUtils::Format("&searchType=%s", WebUtils::URLEncodeInline(AUTOTIMER_SEARCH_TYPE_START).c_str());

std::underlying_type<AutoTimer::DeDup>::type deDup = static_cast<AutoTimer::DeDup>(timer.GetPreventDuplicateEpisodes());
if (deDup == AutoTimer::DeDup::DISABLED)
Expand Down

0 comments on commit 211b88b

Please sign in to comment.