Skip to content

Commit 879ca53

Browse files
committed
[xmldialog_esnwidevine] fix esn checks dash count
1 parent aaddff6 commit 879ca53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

resources/lib/kodi/ui/xmldialog_esnwidevine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def _esn_checks(self, esn):
118118
if not esn.startswith(('NFANDROID1-PRV-', 'NFANDROID2-PRV-')) or esn.count('-') < 5:
119119
return False
120120
else:
121-
if esn.count('-') != 3 or len(esn) != 40:
121+
if esn.count('-') != 2 or len(esn) != 40:
122122
return False
123123
return True
124124

0 commit comments

Comments
 (0)