Skip to content

Commit 1931a6a

Browse files
committed
Quick fix disabling Lacros on XBox.
1 parent 06b88d3 commit 1931a6a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/inputstreamhelper/widevine/arm_lacros.py

+5-1
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)