(mut url: String, selector: Option<&str>)
| 2919 | } |
| 2920 | |
| 2921 | fn ui_url_from_base(mut url: String, selector: Option<&str>) -> String { |
| 2922 | if let Some(selector) = selector.filter(|value| !value.trim().is_empty()) { |
| 2923 | url.push_str(&format!("/?device={}", percent_encode(selector.trim()))); |
| 2924 | } |
| 2925 | url |
| 2926 | } |
| 2927 | |
| 2928 | fn expose_to_studio(options: StudioExposeOptions) -> anyhow::Result<()> { |
| 2929 | let stream_quality_profile = studio_stream_quality_profile( |
no test coverage detected