Skip to content

Commit

Permalink
Quick fix disabling Lacros on XBox.
Browse files Browse the repository at this point in the history
  • Loading branch information
horstle committed Oct 13, 2024
1 parent b95614b commit a672b6e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/inputstreamhelper/widevine/arm_lacros.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

import os
import json
from ctypes.util import find_library
try:
from ctypes.util import find_library
except FileNotFoundError:
def find_library(name):
return None

from .repo import cdm_from_repo
from .. import config
Expand Down

0 comments on commit a672b6e

Please sign in to comment.