dblume commited on 2023-02-22 19:06:38
Showing 4 changed files, with 6 additions and 4 deletions.
| ... | ... |
@@ -32,9 +32,8 @@ function getDeviceId(deviceInfo as object) as String |
| 32 | 32 |
end if |
| 33 | 33 |
end if |
| 34 | 34 |
' That did not work, so make a custom one. |
| 35 |
- clientID = Right(deviceInfo.GetChannelClientId(), 6) |
|
| 36 |
- modelID = deviceInfo.GetModel() |
|
| 37 |
- return clientID + "-" + modelID |
|
| 35 |
+ clientID = Right(deviceInfo.GetChannelClientId(), 8) |
|
| 36 |
+ return clientID + ":" + deviceInfo.GetModelDetails()["ModelNumber"] |
|
| 38 | 37 |
end function |
| 39 | 38 |
|
| 40 | 39 |
function executeTask() as void |