diff --git a/mythtv/libs/libmythtv/recorders/vboxutils.cpp b/mythtv/libs/libmythtv/recorders/vboxutils.cpp
index f1c417e..6c14c16 100644
|
a
|
b
|
bool VBox::checkVersion(QString &version)
|
| 223 | 223 | QStringList sList = requiredVersion.split('.'); |
| 224 | 224 | |
| 225 | 225 | // sanity check this looks like a VBox version string |
| 226 | | if (sList.count() != 3 || !requiredVersion.startsWith("VB.")) |
| | 226 | if (sList.count() != 3 || !requiredVersion.startsWith("V")) |
| 227 | 227 | { |
| 228 | 228 | LOG(VB_GENERAL, LOG_INFO, LOC + QString("Failed to parse required version from %1").arg(requiredVersion)); |
| 229 | 229 | version = "UNKNOWN"; |
| … |
… |
bool VBox::checkVersion(QString &version)
|
| 246 | 246 | sList = version.split('.'); |
| 247 | 247 | |
| 248 | 248 | // sanity check this looks like a VBox version string |
| 249 | | if (sList.count() != 3 || !version.startsWith("VB.")) |
| | 249 | if (sList.count() != 3 || !version.startsWith("V")) |
| 250 | 250 | { |
| 251 | 251 | LOG(VB_GENERAL, LOG_INFO, LOC + QString("Failed to parse version from %1").arg(version)); |
| 252 | 252 | delete xmlDoc; |