make "media silenced" work like "silenced"
that is, silencing `foo.com` also silences `sub.foo.com`
This commit is contained in:
parent
02748edd17
commit
151470d882
@ -45,7 +45,7 @@ export class UtilityService {
|
|||||||
@bindThis
|
@bindThis
|
||||||
public isMediaSilencedHost(silencedHosts: string[] | undefined, host: string | null): boolean {
|
public isMediaSilencedHost(silencedHosts: string[] | undefined, host: string | null): boolean {
|
||||||
if (!silencedHosts || host == null) return false;
|
if (!silencedHosts || host == null) return false;
|
||||||
return silencedHosts.some(x => host.toLowerCase() === x);
|
return silencedHosts.some(x => `.${host.toLowerCase()}`.endsWith(`.${x}`));
|
||||||
}
|
}
|
||||||
|
|
||||||
@bindThis
|
@bindThis
|
||||||
|
Loading…
Reference in New Issue
Block a user