Skip to content

Commit

Permalink
Disable the isDefault flag on the discogs provider
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeop committed Aug 15, 2024
1 parent bf920c6 commit b517aa9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/plugins/meta/discogs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class DiscogsMetaProvider extends MetaProvider {
this.sourceName = 'Discogs Metadata Provider';
this.description = 'Metadata provider that uses Discogs as a source.';
this.image = null;
this.isDefault = true;
this.isDefault = false;
this.lastfm = new LastFmApi(process.env.LAST_FM_API_KEY, process.env.LASTFM_API_SECRET);
}

Expand Down
3 changes: 3 additions & 0 deletions packages/core/src/rest/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ export { Mastodon };
import * as iTunes from './iTunes';
export { iTunes };

import * as Spotify from './Spotify';
export { Spotify };

import { NuclearPlaylistsService } from './Nuclear/Playlists';
export { NuclearPlaylistsService };

Expand Down

0 comments on commit b517aa9

Please sign in to comment.