We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3cb697 commit 8d191d7Copy full SHA for 8d191d7
tinytuya/scanner.py
@@ -213,6 +213,10 @@ def get_ip_to_broadcast():
213
def send_discovery_request( iface_list=None ):
214
close_sockets = False
215
216
+ if not tinytuya.AESCipher.CRYPTOLIB_HAS_GCM:
217
+ # GCM is required for discovery requests
218
+ return False
219
+
220
if not iface_list:
221
close_sockets = True
222
iface_list = {}
0 commit comments