Commit 3b6790c7 authored by Max Kellermann's avatar Max Kellermann

command: never print "bad name" in response to "load"

Work around a confusing error message.
parent 5ee3a9a9
......@@ -817,11 +817,20 @@ handle_load(struct client *client, int argc, char *argv[])
return print_playlist_result(client, result);
GError *error = NULL;
return playlist_load_spl(&g_playlist, client->player_control,
argv[1], start_index, end_index,
&error)
? COMMAND_RETURN_OK
: print_error(client, error);
if (playlist_load_spl(&g_playlist, client->player_control,
argv[1], start_index, end_index,
&error))
return COMMAND_RETURN_OK;
if (error->domain == playlist_quark() &&
error->code == PLAYLIST_RESULT_BAD_NAME)
/* the message for BAD_NAME is confusing when the
client wants to load a playlist file from the music
directory; patch the GError object to show "no such
playlist" instead */
error->code = PLAYLIST_RESULT_NO_SUCH_LIST;
return print_error(client, error);
}
static enum command_return
......
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