Skip to content

Commit

Permalink
fix superfluous white space being passed in required server-tag meeti…
Browse files Browse the repository at this point in the history
…ng options (#5936)
  • Loading branch information
Ithanil authored Sep 16, 2024
1 parent a1b9e5b commit c97a0ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/meeting_starter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def handle_server_tag(meeting_options:)
tag_required = meeting_options.delete('serverTagRequired')

if tag_names.key?(tag) && !(tag_roles.key?(tag) && tag_roles[tag].exclude?(@room.user.role_id))
tag_param = tag_required == 'true' ? "#{tag} !" : tag
tag_param = tag_required == 'true' ? "#{tag}!" : tag
meeting_options.store('meta_server-tag', tag_param)
end
else
Expand Down

0 comments on commit c97a0ce

Please sign in to comment.