diff --git a/plugins/mac-capture/mac-screen-capture.m b/plugins/mac-capture/mac-screen-capture.m index f0e780575..bce93fe66 100644 --- a/plugins/mac-capture/mac-screen-capture.m +++ b/plugins/mac-capture/mac-screen-capture.m @@ -928,8 +928,9 @@ static bool build_application_list(struct screen_capture *sc, [application.applicationName UTF8String]; const char *bundle_id = [application.bundleIdentifier UTF8String]; - obs_property_list_add_string(application_list, name, - bundle_id); + if (strcmp(name, "") != 0) + obs_property_list_add_string(application_list, + name, bundle_id); }]; os_sem_post(sc->shareable_content_available);