774056846 4 months ago
parent
commit
00083a893c
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/core/callcenter/esl/client.py

+ 3 - 2
src/core/callcenter/esl/client.py

@@ -433,7 +433,7 @@ class InboundClient:
             device_id,
             " on"
         ]
-        arg = "".join(builder)
+        arg = ''.join(builder)
         return self.con.api(PAUSE, arg)
 
     def hold_play(self, device_id, play):
@@ -445,7 +445,8 @@ class InboundClient:
             " ",
             SMF_ALEG
         ]
-        arg = "".join(builder)
+        print('debugger::hold_play, device_id=%s, play=%s' % (device_id, play), flush=True)
+        arg = ''.join(builder)
         print('debugger::hold_play, arg=%s' % arg, flush=True)
         return self.con.api(UUID_BROADCAST, arg)