Skip to content

Commit a672b6e

Browse files
committed
Quick fix disabling Lacros on XBox.
1 parent b95614b commit a672b6e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/inputstreamhelper/widevine/arm_lacros.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

55
import os
66
import json
7-
from ctypes.util import find_library
7+
try:
8+
from ctypes.util import find_library
9+
except FileNotFoundError:
10+
def find_library(name):
11+
return None
812

913
from .repo import cdm_from_repo
1014
from .. import config

0 commit comments

Comments
 (0)