mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-26 04:27:25 +00:00
FS-7870: [mod_conference] allow jsonapi commands to take string variant of id attr
This commit is contained in:
parent
25ae4dbbca
commit
cbc489fe27
@ -107,7 +107,7 @@ void conference_event_mod_channel_handler(const char *event_channel, cJSON *json
|
|||||||
!strcasecmp(action, "unvmute") ||
|
!strcasecmp(action, "unvmute") ||
|
||||||
!strcasecmp(action, "tvmute")
|
!strcasecmp(action, "tvmute")
|
||||||
) {
|
) {
|
||||||
exec = switch_mprintf("%s %s %d", conference_name, action, cid);
|
exec = switch_mprintf("%s %s %s", conference_name, action, cid);
|
||||||
} else if (!strcasecmp(action, "volume_in") ||
|
} else if (!strcasecmp(action, "volume_in") ||
|
||||||
!strcasecmp(action, "volume_out") ||
|
!strcasecmp(action, "volume_out") ||
|
||||||
!strcasecmp(action, "vid-res-id") ||
|
!strcasecmp(action, "vid-res-id") ||
|
||||||
@ -116,7 +116,7 @@ void conference_event_mod_channel_handler(const char *event_channel, cJSON *json
|
|||||||
!strcasecmp(action, "vid-canvas") ||
|
!strcasecmp(action, "vid-canvas") ||
|
||||||
!strcasecmp(action, "vid-watching-canvas") ||
|
!strcasecmp(action, "vid-watching-canvas") ||
|
||||||
!strcasecmp(action, "vid-banner")) {
|
!strcasecmp(action, "vid-banner")) {
|
||||||
exec = switch_mprintf("%s %s %d %s", conference_name, action, cid, argv[0]);
|
exec = switch_mprintf("%s %s %s %s", conference_name, action, cid, argv[0]);
|
||||||
} else if (!strcasecmp(action, "play") || !strcasecmp(action, "stop")) {
|
} else if (!strcasecmp(action, "play") || !strcasecmp(action, "stop")) {
|
||||||
exec = switch_mprintf("%s %s %s", conference_name, action, argv[0]);
|
exec = switch_mprintf("%s %s %s", conference_name, action, argv[0]);
|
||||||
} else if (!strcasecmp(action, "recording") || !strcasecmp(action, "vid-layout") || !strcasecmp(action, "vid-write-png")) {
|
} else if (!strcasecmp(action, "recording") || !strcasecmp(action, "vid-layout") || !strcasecmp(action, "vid-write-png")) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user