You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
From what I've seen, sending a command always needs to read the response. However, we also have code like this:
case 'savepl':
if (isset($_GET['plname']) && $_GET['plname'] != '') {
sendMpdCommand($mpd,"rm "" .html_entity_decode($_GET['plname']) . """);
sendMpdCommand($mpd,"save "" .html_entity_decode($_GET['plname']) . """);
$res = readMpdResponse($mpd);
}
break;
Is this broken and should rather send+read response? How das mpd handle " signs?
—
Reply to this email directly or view it on GitHub #6.
From what I've seen, sending a command always needs to read the response. However, we also have code like this:
Is this broken and should rather send+read response? How das mpd handle " signs?
The text was updated successfully, but these errors were encountered: