Fix CardReader::getStatus when not printing

This commit is contained in:
Scott Lahteine 2018-03-16 03:25:27 -05:00
parent 4dc4d348d4
commit c294613b53

View File

@ -533,7 +533,7 @@ void CardReader::removeFile(const char * const name) {
}
void CardReader::getStatus() {
if (cardOK) {
if (cardOK && sdprinting) {
SERIAL_PROTOCOLPGM(MSG_SD_PRINTING_BYTE);
SERIAL_PROTOCOL(sdpos);
SERIAL_PROTOCOLCHAR('/');