From 1d437dfb8e7c7d63b23ac660087129ff819a271b Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 18 Aug 2025 11:25:50 +0200 Subject: [PATCH] global: allow property updated for registered globals The idea of fd2db174c1e866e70833ec358ba6cef668441eb5 was to allow for property updates after the global was registered but this check was not removed to actually make this happen. Fixes #4851 --- src/pipewire/global.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pipewire/global.c b/src/pipewire/global.c index c9975f9b5..1973f88ca 100644 --- a/src/pipewire/global.c +++ b/src/pipewire/global.c @@ -237,8 +237,6 @@ SPA_EXPORT int pw_global_update_keys(struct pw_global *global, const struct spa_dict *dict, const char * const keys[]) { - if (global->registered) - return -EINVAL; return pw_properties_update_keys(global->properties, dict, keys); }