pull/1222/head
Mikunj 5 years ago
parent 95f1e34b6b
commit 1b93a210bc

@ -13,11 +13,13 @@ export class BlockedNumberController {
/**
* Check if a device is blocked.
* Make sure `load()` has been called before this function so that the correct blocked state is returned.
*
* @param number The device.
*/
public static isBlocked(device: string | PubKey): boolean {
void this.load();
// This function is not `async` because the old `isBlocked` function in js was also not async.
// To convert it means we'll have to re-wire all our UI components to work with async.
const stringValue =
device instanceof PubKey ? device.key : device.toLowerCase();
return this.blockedNumbers.has(stringValue);
@ -25,10 +27,13 @@ export class BlockedNumberController {
/**
* Check if a group id is blocked.
* Make sure `load()` has been called before this function so that the correct blocked state is returned.
*
* @param groupId The group id.
*/
public static isGroupBlocked(groupId: string | PubKey): boolean {
void this.load();
// This function is not `async` because the old `isBlocked` function in js was also not async.
// To convert it means we'll have to re-wire all our UI components to work with async.
const stringValue =
groupId instanceof PubKey ? groupId.key : groupId.toLowerCase();
return this.blockedGroups.has(stringValue);

Loading…
Cancel
Save