|
@@ -185,8 +185,7 @@ func (s *infoBoardCtl) CronSyncLedPaying(id int) {
|
|
for _, led := range list {
|
|
for _, led := range list {
|
|
_, retState := cache.GetDeviceState(led.Sn)
|
|
_, retState := cache.GetDeviceState(led.Sn)
|
|
currPaying := cache.GetDeviceLedData(led.Sn)
|
|
currPaying := cache.GetDeviceLedData(led.Sn)
|
|
- if retState == "1" {
|
|
|
|
-
|
|
|
|
|
|
+ if retState == "1" && len(currPaying) != 0 {
|
|
playing := currPaying["playing"].(string) //得到当前正播放的节目
|
|
playing := currPaying["playing"].(string) //得到当前正播放的节目
|
|
fmt.Printf("led信息屏设备Sn = %v 当前正在播放[%v]", led.Sn, playing)
|
|
fmt.Printf("led信息屏设备Sn = %v 当前正在播放[%v]", led.Sn, playing)
|
|
playJson := service2.PublishLibrariesService.LedPaying(led.ID, playing)
|
|
playJson := service2.PublishLibrariesService.LedPaying(led.ID, playing)
|