Skip to content

Commit

Permalink
fix: use correct default addonName for comet and mediafusion
Browse files Browse the repository at this point in the history
  • Loading branch information
Viren070 committed Dec 30, 2024
1 parent 52f5571 commit 970f103
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/wrappers/src/comet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface CometStream extends Stream {
}

export class Comet extends BaseWrapper {
constructor(configString: string | null, overrideUrl: string | null, indexerTimeout: number = 10000, addonName: string = 'Torrentio') {
constructor(configString: string | null, overrideUrl: string | null, indexerTimeout: number = 10000, addonName: string = 'Comet') {
let url = overrideUrl
? overrideUrl
: 'https://comet.elfhosted.com/' +
Expand Down
2 changes: 1 addition & 1 deletion packages/wrappers/src/mediafusion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { addonDetails } from './details';


export class MediaFusion extends BaseWrapper {
constructor(configString: string | null, overrideUrl: string | null, indexerTimeout: number = 10000, addonName: string = 'Torrentio') {
constructor(configString: string | null, overrideUrl: string | null, indexerTimeout: number = 10000, addonName: string = 'MediaFusion') {
let url = overrideUrl
? overrideUrl
: 'https://mediafusion.elfhosted.com/' +
Expand Down

0 comments on commit 970f103

Please sign in to comment.