🔥 Commented out verified functionality

This commit is contained in:
Wazbat 2023-04-25 00:14:35 +02:00
parent 6dcf8a1faf
commit d664a3cfde
3 changed files with 6 additions and 3 deletions

View file

@ -21,6 +21,7 @@ const populateUserProperties = async (
apiUser.screen_name = user.legacy.screen_name;
apiUser.description = user.legacy.description;
apiUser.location = user.legacy.location;
/*
if (user.is_blue_verified) {
apiUser.verified = 'blue';
} else if (user.legacy.verified) {
@ -32,9 +33,11 @@ const populateUserProperties = async (
apiUser.verified = 'legacy';
}
}
if (apiUser.verified === 'government') {
apiUser.verified_label = user.affiliates_highlighted_label?.label?.description || '';
}
*/
apiUser.avatar_url = user.legacy.profile_image_url_https;
apiUser.joined = user.legacy.created_at;
if (user.legacy_extended_profile?.birthdate) {

View file

@ -155,8 +155,8 @@ interface APIUser extends BaseUser {
location: string;
url: string;
protected: boolean;
verified: 'legacy' | 'blue'| 'business' | 'government';
verified_label: string;
// verified: 'legacy' | 'blue'| 'business' | 'government';
// verified_label: string;
followers: number;
following: number;
tweets: number;

View file

@ -264,7 +264,7 @@ test('API fetch user', async () => {
// The official twitter account will never be following as many people as it has followers
expect(user.following).not.toEqual(user.followers);
expect(user.likes).toEqual(expect.any(Number));
expect(user.verified).toEqual('business');
// expect(user.verified).toEqual('business');
expect(user.joined).toEqual('Tue Feb 20 14:35:54 +0000 2007');
expect(user.birthday.day).toEqual(21);
expect(user.birthday.month).toEqual(3);