Commit 16fb843c authored by Max Kellermann's avatar Max Kellermann

tag/MixRamp: fix typo which broken MixRamp

Fixes regression by commit 8e0d8109 which is 2 years old, and nobody noticed. D'oh, how embarassing!
parent 36b33345
...@@ -4,6 +4,8 @@ ver 0.23.5 (not yet released) ...@@ -4,6 +4,8 @@ ver 0.23.5 (not yet released)
- fix "searchaddpl" bug (bogus error "Bad position") - fix "searchaddpl" bug (bogus error "Bad position")
* database * database
- upnp: fix crash bug - upnp: fix crash bug
* tags
- fix MixRamp support
* migrate to PCRE2 * migrate to PCRE2
* GCC 12 build fixes * GCC 12 build fixes
......
...@@ -36,7 +36,7 @@ ParseMixRampTagTemplate(MixRampInfo &info, const T t) noexcept ...@@ -36,7 +36,7 @@ ParseMixRampTagTemplate(MixRampInfo &info, const T t) noexcept
} }
const auto end = t["mixramp_end"]; const auto end = t["mixramp_end"];
if (!start.IsNull()) { if (!end.IsNull()) {
info.SetEnd(std::string(end.data, end.size)); info.SetEnd(std::string(end.data, end.size));
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment