From b7b202fac70950a7e78ec7df1d1aadc955423b2a Mon Sep 17 00:00:00 2001 From: Colin Edwards Date: Thu, 16 Apr 2020 19:28:00 -0500 Subject: [PATCH] libobs: Fix plugin folder search path case on macOS --- libobs/obs-cocoa.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libobs/obs-cocoa.m b/libobs/obs-cocoa.m index 26034a84c..71cfaba00 100644 --- a/libobs/obs-cocoa.m +++ b/libobs/obs-cocoa.m @@ -65,7 +65,7 @@ void add_default_module_paths(void) [NSRunningApplication currentApplication]; NSURL *bundleURL = [app bundleURL]; NSURL *pluginsURL = [bundleURL - URLByAppendingPathComponent:@"Contents/Plugins"]; + URLByAppendingPathComponent:@"Contents/PlugIns"]; NSURL *dataURL = [bundleURL URLByAppendingPathComponent: @"Contents/Resources/data/obs-plugins/%module%"];