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 a9cc935 commit 8e31a24Copy full SHA for 8e31a24
plexapi/myplex.py
@@ -2094,6 +2094,8 @@ def _clientIdentifier(self):
2094
@property
2095
def _keyID(self):
2096
""" Returns the key ID (thumbprint) for the ED25519 keypair. """
2097
+ if not self._privateKey or not self._publicKey:
2098
+ return None
2099
return hashlib.sha256(self._privateKey + self._publicKey).hexdigest()
2100
2101
0 commit comments