From a55e0085f7196d16c21d44fec06cf43e0251bd97 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Fri, 27 Dec 2024 14:24:43 +0100 Subject: [PATCH] Get rid of InvalidPathError --- facefusion/uis/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/facefusion/uis/core.py b/facefusion/uis/core.py index 90a827b8..13652df1 100644 --- a/facefusion/uis/core.py +++ b/facefusion/uis/core.py @@ -72,8 +72,10 @@ def register_ui_component(component_name : ComponentName, component: Component) def init() -> None: os.environ['GRADIO_ANALYTICS_ENABLED'] = '0' os.environ['GRADIO_TEMP_DIR'] = os.path.join(state_manager.get_item('temp_path'), 'gradio') + os.environ['GRADIO_ALLOWED_PATHS'] = '*' warnings.filterwarnings('ignore', category = UserWarning, module = 'gradio') + gradio.processing_utils._check_allowed = lambda path, check_in_upload_folder: None def launch() -> None: