We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24eb8b8 commit 499c10eCopy full SHA for 499c10e
plugins/deep-link/src/config.rs
@@ -28,7 +28,7 @@ pub struct AssociatedDomain {
28
impl AssociatedDomain {
29
/// Returns true if the domain uses http or https scheme and has a host.
30
pub fn is_web_link(&self) -> bool {
31
- self.host.is_some() && self.scheme.iter().any(|s| s == "https" || s == "http")
+ self.scheme.iter().any(|s| s == "https" || s == "http")
32
}
33
34
/// Returns true if marked as AppLink and has proper configuration.
0 commit comments