signal-desktop/ts/util/getProfile.ts

20 lines
508 B
TypeScript
Raw Normal View History

2023-01-03 19:55:46 +00:00
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import * as log from '../logging/log';
import { profileService } from '../services/profiles';
export async function getProfile(uuid?: string, e164?: string): Promise<void> {
const c = window.ConversationController.lookupOrCreate({
uuid,
e164,
reason: 'getProfile',
});
if (!c) {
log.error('getProfile: failed to find conversation; doing nothing');
return;
}
return profileService.get(c.id);
}