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
78e49928
Commit
78e49928
authored
3 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
command/QueueCommands: disallow moving the current song relative to itself
This was a no-op previously, but this operation makes no sense.
parent
c0bcfe24
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
QueueCommands.cxx
src/command/QueueCommands.cxx
+2
-4
No files found.
src/command/QueueCommands.cxx
View file @
78e49928
...
@@ -378,8 +378,7 @@ ParseMoveDestination(const char *s, const RangeArg range,
...
@@ -378,8 +378,7 @@ ParseMoveDestination(const char *s, const RangeArg range,
unsigned
current
=
RequireCurrentPosition
(
p
);
unsigned
current
=
RequireCurrentPosition
(
p
);
assert
(
current
<
queue_length
);
assert
(
current
<
queue_length
);
if
(
range
.
Contains
(
current
))
if
(
range
.
Contains
(
current
))
/* no-op */
throw
ProtocolError
(
ACK_ERROR_ARG
,
"Cannot move current song relative to itself"
);
return
range
.
start
;
if
(
current
>=
range
.
end
)
if
(
current
>=
range
.
end
)
current
-=
range
.
Count
();
current
-=
range
.
Count
();
...
@@ -393,8 +392,7 @@ ParseMoveDestination(const char *s, const RangeArg range,
...
@@ -393,8 +392,7 @@ ParseMoveDestination(const char *s, const RangeArg range,
unsigned
current
=
RequireCurrentPosition
(
p
);
unsigned
current
=
RequireCurrentPosition
(
p
);
assert
(
current
<
queue_length
);
assert
(
current
<
queue_length
);
if
(
range
.
Contains
(
current
))
if
(
range
.
Contains
(
current
))
/* no-op */
throw
ProtocolError
(
ACK_ERROR_ARG
,
"Cannot move current song relative to itself"
);
return
range
.
start
;
if
(
current
>=
range
.
end
)
if
(
current
>=
range
.
end
)
current
-=
range
.
Count
();
current
-=
range
.
Count
();
...
...
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