Client ID not useful in UI, remove it
dblume

dblume commited on 2023-02-22 18:48:49
Showing 1 changed files, with 2 additions and 2 deletions.

... ...
@@ -6,7 +6,7 @@ function getDeviceInfo(deviceInfo as object) as Object
6 6
     ' Try to get various info from an ECP call
7 7
     aa = {}
8 8
     aa["RIDA"] = deviceInfo.GetRIDA()
9
-    aa["client ID"] = deviceInfo.GetChannelClientId()
9
+    print "Client ID = " deviceInfo.GetChannelClientId()
10 10
     request = CreateObject("roUrlTransfer")
11 11
     request.SetUrl("http://localhost:8060/query/device-info")
12 12
     root = CreateObject("roXMLElement")
... ...
@@ -87,7 +87,7 @@ function executeTask() as void
87 87
         msg = wait(0, port)
88 88
         msgType = type(msg)
89 89
 
90
-        dt = Mid(CreateObject("roDateTime").ToISOString(), 15, 5)
90
+        dt = Mid(CreateObject("roDateTime").ToISOString(), 12, 8)
91 91
 
92 92
         if msgType = "roHdmiStatusEvent"
93 93
             aa = msg.GetInfo()
94 94