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 7ed6e6c commit 163cc6cCopy full SHA for 163cc6c
lib/inputstreamhelper.py
@@ -237,7 +237,7 @@ def _supports_hls(self):
237
self._log('HLS is not supported on {0} version {1}'.format(self._inputstream_addon), self._inputstream_version())
238
return False
239
240
- def check_for_drm(self):
+ def _check_for_drm(self):
241
"""Main function for ensuring that specified DRM system is installed and available."""
242
if self.drm:
243
if self.drm == 'widevine':
@@ -273,4 +273,4 @@ def check_inputstream(self):
273
return self._supports_hls()
274
else:
275
self._log('{0} is installed and enabled.'.format(self._inputstream_addon))
276
- return self.check_for_drm()
+ return self._check_for_drm()
0 commit comments