We are already checking if kio_mtp is installed when we build the
predicate so we don't need to check if it is installed again.
Also, the fix for "Showing the product as a name for some kind of
massive storage" will have to be delayed to 4.9.4, so removing this.
} else if (m_disc && (m_disc->availableContent() & Solid::OpticalDisc::Audio) != 0) {
const QString device = m_device.as<Solid::Block>()->device();
setUrl(QString("audiocd:/?device=%1").arg(device));
- } else if (m_mtp && m_mtp->supportedProtocols().contains("mtp")) {
- setText(m_device.product());
+ } else if (m_mtp) {
setUrl(QString("mtp:udi=%1").arg(m_device.udi()));
}
}