Skip to content

Commit

Permalink
fix: Updated trusted uploaders
Browse files Browse the repository at this point in the history
  • Loading branch information
TriPSs committed Dec 11, 2023
1 parent 93d45a1 commit 2400f03
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ MONGO_URI=127.0.0.1
# The port of the MongoDB database.
MONGO_PORT=27017

# The username of the MongoDB database, disbale if none.
# The username of the MongoDB database, disable if none.
MONGO_USER=

# The password of the MongoDB database, disbale if none.
# The password of the MongoDB database, disable if none.
MONGO_PASS=

# The url to the scraper
Expand All @@ -36,6 +36,7 @@ OPENSUBTITLES_PASSWORD=

# API key for Trakt
TRAKT_KEY=
TMDB_KEY=

# The time between cronjobs.
CRON_TIME='0 0 3 * * *'
Expand Down
4 changes: 2 additions & 2 deletions apps/api/src/shared/search/adapters/1337x.search-adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ export class OneThreeThreeSevenXSearchAdapater extends SearchAdapter {
'Cristie',
'mazemaze16',
'TeamRocker',
'YIFY',
'PMEDIA',
'bone111',
'Silmarillion'
'Silmarillion',
'TGxGoodies'
]

/**
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/shared/search/search.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class SearchService {
adapters: SearchAdapter[] = []

constructor(private readonly httpService: HttpService) {
this.adapters.push(new RarbgSearchAdapter(httpService))
// this.adapters.push(new RarbgSearchAdapter(httpService))
this.adapters.push(new OneThreeThreeSevenXSearchAdapater(httpService))
}

Expand Down

0 comments on commit 2400f03

Please sign in to comment.