Skip to content

Commit 1b24c30

Browse files
committed
@mbridak remove calls to multicast on mult recalcs since there is no interface and causing a crash.
1 parent cd5bb77 commit 1b24c30

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

not1mm/plugins/helvetia.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def recalculate_mults(self):
308308
cmd = {}
309309
cmd["cmd"] = "UPDATELOG"
310310
cmd["station"] = platform.node()
311-
self.multicast_interface.send_as_json(cmd)
311+
# self.multicast_interface.send_as_json(cmd)
312312

313313

314314
def adif(self):

not1mm/plugins/k1usn_sst.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ def recalculate_mults(self):
388388
cmd = {}
389389
cmd["cmd"] = "UPDATELOG"
390390
cmd["station"] = platform.node()
391-
self.multicast_interface.send_as_json(cmd)
391+
# self.multicast_interface.send_as_json(cmd)
392392

393393

394394
def process_esm(self, new_focused_widget=None, with_enter=False):

not1mm/plugins/naqp_cw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ def recalculate_mults(self):
414414
cmd = {}
415415
cmd["cmd"] = "UPDATELOG"
416416
cmd["station"] = platform.node()
417-
self.multicast_interface.send_as_json(cmd)
417+
# self.multicast_interface.send_as_json(cmd)
418418

419419

420420
def process_esm(self, new_focused_widget=None, with_enter=False):

not1mm/plugins/naqp_rtty.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def recalculate_mults(self):
433433
cmd = {}
434434
cmd["cmd"] = "UPDATELOG"
435435
cmd["station"] = platform.node()
436-
self.multicast_interface.send_as_json(cmd)
436+
# self.multicast_interface.send_as_json(cmd)
437437

438438

439439
def set_self(the_outie):

not1mm/plugins/naqp_ssb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def recalculate_mults(self):
384384
cmd = {}
385385
cmd["cmd"] = "UPDATELOG"
386386
cmd["station"] = platform.node()
387-
self.multicast_interface.send_as_json(cmd)
387+
# self.multicast_interface.send_as_json(cmd)
388388

389389

390390
def process_esm(self, new_focused_widget=None, with_enter=False):

not1mm/plugins/phone_weekly_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def recalculate_mults(self):
404404
cmd = {}
405405
cmd["cmd"] = "UPDATELOG"
406406
cmd["station"] = platform.node()
407-
self.multicast_interface.send_as_json(cmd)
407+
# self.multicast_interface.send_as_json(cmd)
408408

409409

410410
def process_esm(self, new_focused_widget=None, with_enter=False):

not1mm/plugins/ref_cw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ def recalculate_mults(self):
313313
cmd = {}
314314
cmd["cmd"] = "UPDATELOG"
315315
cmd["station"] = platform.node()
316-
self.multicast_interface.send_as_json(cmd)
316+
# self.multicast_interface.send_as_json(cmd)
317317

318318

319319
def adif(self):

not1mm/plugins/ref_ssb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def recalculate_mults(self):
328328
cmd = {}
329329
cmd["cmd"] = "UPDATELOG"
330330
cmd["station"] = platform.node()
331-
self.multicast_interface.send_as_json(cmd)
331+
# self.multicast_interface.send_as_json(cmd)
332332

333333

334334
def adif(self):

not1mm/plugins/weekly_rtty.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ def recalculate_mults(self):
398398
cmd = {}
399399
cmd["cmd"] = "UPDATELOG"
400400
cmd["station"] = platform.node()
401-
self.multicast_interface.send_as_json(cmd)
401+
# self.multicast_interface.send_as_json(cmd)
402402

403403

404404
def set_self(the_outie):

0 commit comments

Comments
 (0)