mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 10:13:22 +02:00
Merge pull request #14655 from danteruiz/unknown-steamvr-headsets
omit unknown device names from clear-story data
This commit is contained in:
commit
b9217e2767
1 changed files with 1 additions and 2 deletions
|
@ -139,11 +139,10 @@ void UserActivityLogger::connectedDevice(QString typeOfDevice, QString deviceNam
|
|||
"NullDisplayPlugin",
|
||||
"3D TV - Side by Side Stereo",
|
||||
"3D TV - Interleaved",
|
||||
|
||||
"Keyboard/Mouse"
|
||||
};
|
||||
|
||||
if (DEVICE_BLACKLIST.contains(deviceName)) {
|
||||
if (DEVICE_BLACKLIST.contains(deviceName) || deviceName.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue