diff --git a/src/repositories/account.repository.ts b/src/repositories/account.repository.ts index 35e017f51..425cce977 100644 --- a/src/repositories/account.repository.ts +++ b/src/repositories/account.repository.ts @@ -64,6 +64,8 @@ export class AccountRepository extends Repository { } } }); + + console.log(`Logged in as ${username}, waiting for mqtt connection ...`) return response.body.logged_in_user; } diff --git a/src/repositories/fbsearch.repository.ts b/src/repositories/fbsearch.repository.ts index c9208dd91..d9f5921f2 100644 --- a/src/repositories/fbsearch.repository.ts +++ b/src/repositories/fbsearch.repository.ts @@ -5,15 +5,6 @@ import { } from '../responses'; export class FbsearchRepository extends Repository { - async suggestedSearches(type: 'blended' | 'users' | 'hashtags' | 'places') { - const { body } = await this.client.request.send({ - url: '/api/v1/fbsearch/suggested_searches/', - qs: { - type, - }, - }); - return body; - } async recentSearches() { const { body } = await this.client.request.send({ url: '/api/v1/fbsearch/recent_searches/', diff --git a/src/services/simulate.service.ts b/src/services/simulate.service.ts index eb1d6f4f0..63e2a2c8a 100644 --- a/src/services/simulate.service.ts +++ b/src/services/simulate.service.ts @@ -28,8 +28,6 @@ export class SimulateService extends Repository { // () => this.client.creatives.writeSupportedCapabilities(), // () => this.client.account.processContactPointSignals(), () => this.client.feed.timeline().request({ recoveredFromCrash: '1', reason: 'cold_start_fetch' }), - () => this.client.fbsearch.suggestedSearches('users'), - () => this.client.fbsearch.suggestedSearches('blended'), () => this.client.fbsearch.recentSearches(), () => this.client.direct.rankedRecipients('reshare'), () => this.client.direct.rankedRecipients('raven'),