Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
16fb843c
Commit
16fb843c
authored
3 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
NEWS
NEWS
+2
-0
MixRamp.cxx
src/tag/MixRamp.cxx
+1
-1
No files found.
NEWS
View file @
16fb843c
...
...
@@ -4,6 +4,8 @@ ver 0.23.5 (not yet released)
- fix "searchaddpl" bug (bogus error "Bad position")
* database
- upnp: fix crash bug
* tags
- fix MixRamp support
* migrate to PCRE2
* GCC 12 build fixes
...
...
This diff is collapsed.
Click to expand it.
src/tag/MixRamp.cxx
View file @
16fb843c
...
...
@@ -36,7 +36,7 @@ ParseMixRampTagTemplate(MixRampInfo &info, const T t) noexcept
}
const
auto
end
=
t
[
"mixramp_end"
];
if
(
!
start
.
IsNull
())
{
if
(
!
end
.
IsNull
())
{
info
.
SetEnd
(
std
::
string
(
end
.
data
,
end
.
size
));
return
true
;
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment