Merge pull request #4173 from S0nter/master

privacy: ignore some streams
This commit is contained in:
Alexis Rouillard
2025-06-22 08:24:22 +01:00
committed by GitHub
5 changed files with 58 additions and 0 deletions

View File

@ -49,6 +49,8 @@ void PrivacyNodeInfo::handleNodeEventInfo(const struct pw_node_info *info) {
pipewire_access_portal_app_id = item->value;
} else if (strcmp(item->key, PW_KEY_APP_ICON_NAME) == 0) {
application_icon_name = item->value;
} else if (strcmp(item->key, "stream.monitor") == 0) {
is_monitor = strcmp(item->value, "true") == 0;
}
}
}