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 cd375cb commit 096f4ccCopy full SHA for 096f4cc
lib/inputstreamhelper/__init__.py
@@ -1091,6 +1091,11 @@ def rollback_libwv(self):
1091
backup_path = self._backup_path()
1092
versions = os.listdir(backup_path)
1093
1094
+ # Return if Widevine is not installed
1095
+ if not os.path.exists(self._widevine_config_path()):
1096
+ notification(localize(30004), localize(30041))
1097
+ return
1098
+
1099
if 'x86' in self._arch():
1100
installed_version = self._load_widevine_config()['version']
1101
else:
0 commit comments