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.
[beta]
1 parent 05278ab commit e674672Copy full SHA for e674672
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
@@ -111,6 +111,9 @@ const onApiLoaded = () => {
111
watchVideoIDChanges(async (videoID) => {
112
await waitForTransition;
113
const url = await getStreamURL(videoID);
114
+ if (!url) {
115
+ return;
116
117
await createAudioForCrossfade(url);
118
});
119
0 commit comments