From 22c3797a89bc3e93c82194dab1af7ffa18f2b977 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Wed, 28 Jan 2026 22:13:03 +0100 Subject: [PATCH] es9p_client: MAke install notification code execute at all The caller specified 'install' but the do_notification() function compared with 'download' :( Change-Id: I2d441cfbc1457688eb163301d3d91a1f1fdc7a8c --- contrib/es9p_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/es9p_client.py b/contrib/es9p_client.py index c1455dc7..d1e164f0 100755 --- a/contrib/es9p_client.py +++ b/contrib/es9p_client.py @@ -126,7 +126,7 @@ class Es9pClient: if self.opts.iccid: ntf_metadata['iccid'] = h2b(swap_nibbles(self.opts.iccid)) - if self.opts.operation == 'download': + if self.opts.operation == 'install': pird = { 'transactionId': h2b(self.opts.transaction_id), 'notificationMetadata': ntf_metadata,