Skip to content

Commit aa899d2

Browse files
committed
chore(plugins): change default config album-actions, music-together
1 parent ee0c512 commit aa899d2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/plugins/album-actions/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default createPlugin({
1212
description: () => t('plugins.album-actions.description'),
1313
restartNeeded: false,
1414
config: {
15-
enabled: true,
15+
enabled: false,
1616
},
1717
renderer: {
1818
observer: null as MutationObserver | null,

src/plugins/music-together/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default createPlugin({
3939
description: () => t('plugins.music-together.description'),
4040
restartNeeded: false,
4141
config: {
42-
enabled: true
42+
enabled: false
4343
},
4444
stylesheets: [style],
4545
backend: {
@@ -670,7 +670,7 @@ export default createPlugin({
670670
const dividers = Array.from(document.querySelectorAll('.music-together-divider'));
671671
dividers.forEach((divider) => divider.remove());
672672

673-
this.elements.setting.remove();
673+
this.elements.setting?.remove();
674674
this.onStop();
675675
if (typeof this.stateInterval === 'number') clearInterval(this.stateInterval);
676676
if (this.playerApi) this.playerApi.removeEventListener('onStateChange', this.videoStateChangeListener);

0 commit comments

Comments
 (0)