mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
ResMed model name tweak
This commit is contained in:
parent
2665c20e63
commit
d3fe79a97d
@ -914,9 +914,16 @@ MachineInfo ResmedLoader::PeekInfo(const QString & path)
|
||||
info.serial = value;
|
||||
|
||||
} else if (key == "PNA") { // Product Name
|
||||
value.replace("S9", "");
|
||||
value.replace("_"," ");
|
||||
value.replace("S9 ", "");
|
||||
info.model = value;
|
||||
value.replace("(","");
|
||||
value.replace(")","");
|
||||
if (value.contains("Adapt", Qt::CaseInsensitive)) {
|
||||
if (!value.contains("VPAP")) {
|
||||
value.replace("Adapt", QObject::tr("VPAP Adapt"));
|
||||
}
|
||||
}
|
||||
info.model = value.trimmed();
|
||||
} else if (key == "PCD") { // Product Code
|
||||
info.modelnumber = value;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user