Remove debug logging

This commit is contained in:
SondreB 2023-01-01 05:41:40 +01:00
parent 853eba3258
commit 7874726468
No known key found for this signature in database
GPG Key ID: D6CC44C75005FDBF

View File

@ -173,17 +173,11 @@ export class ProfileService {
profile.followed = now;
}
console.log('PUT PROFILE:', profile);
// Put profile since we already got it in the beginning.
await this.putProfile(pubkey, profile);
console.log('DOWNLOAD PROFILE CALL 1');
// Always refresh the profile when adding a follow on a user.
await this.downloadProfile(pubkey);
console.log('DOWNLOAD PROFILE CALL 2');
}
async follow(pubkey: string, circle?: string, existingProfile?: NostrProfileDocument) {