|
|
@@ -553,6 +553,7 @@ function sendGroupList(human, panelID)
|
|
|
local funcConfig = getFuncConfig(funcID)
|
|
|
|
|
|
if not funcConfig then
|
|
|
+ print("[sendGroupList] funcConfig is nil for funcID="..funcID)
|
|
|
goto continue
|
|
|
end
|
|
|
|
|
|
@@ -561,6 +562,9 @@ function sendGroupList(human, panelID)
|
|
|
goto continue
|
|
|
end
|
|
|
|
|
|
+ print("[sendGroupList] processing funcID="..funcID..", panelID="..funcConfig.panelID..", requestPanelID="..panelID..", isMainPanel="..tostring(isMainPanel))
|
|
|
+ print("[sendGroupList] YYInfo.moduleList[funcID]="..tostring(YYInfo.moduleList[funcID]))
|
|
|
+
|
|
|
local state = false
|
|
|
local endTime = nil
|
|
|
local startTime = nil
|
|
|
@@ -575,12 +579,15 @@ function sendGroupList(human, panelID)
|
|
|
state = false
|
|
|
end
|
|
|
if not state then
|
|
|
- print("[sendGroupList] funcID="..funcID.." isOpen returned false/nil, panelID="..panelID)
|
|
|
+ print("[sendGroupList] funcID="..funcID.." isOpen returned false/nil, panelID="..funcConfig.panelID)
|
|
|
+ else
|
|
|
+ print("[sendGroupList] funcID="..funcID.." isOpen returned true, panelID="..funcConfig.panelID)
|
|
|
end
|
|
|
if endTime then
|
|
|
leftTime = endTime - os.time()
|
|
|
end
|
|
|
else
|
|
|
+ print("[sendGroupList] funcID="..funcID.." moduleList is nil or isOpen is nil, setting state=true")
|
|
|
state = true
|
|
|
end
|
|
|
else
|