We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b9af14 + e674672 commit cad8e4fCopy full SHA for cad8e4f
menu.js
@@ -59,7 +59,12 @@ const mainMenuTemplate = (win) => {
59
};
60
}
61
62
- return pluginEnabledMenu(plugin);
+ let pluginLabel = plugin;
63
+ if (pluginLabel === "crossfade") {
64
+ pluginLabel = "crossfade [beta]";
65
+ }
66
+
67
+ return pluginEnabledMenu(plugin, pluginLabel);
68
}),
69
],
70
},
plugins/crossfade/front.js
@@ -110,6 +110,9 @@ const onApiLoaded = () => {
110
watchVideoIDChanges(async (videoID) => {
111
await waitForTransition;
112
const url = await getStreamURL(videoID);
113
+ if (!url) {
114
+ return;
115
116
await createAudioForCrossfade(url);
117
});
118
0 commit comments