mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-16 12:42:06 +00:00
simple fix
This commit is contained in:
@ -11,14 +11,17 @@ const clientId = "790655993809338398";
|
|||||||
|
|
||||||
let clearActivity;
|
let clearActivity;
|
||||||
|
|
||||||
module.exports = (win, {activityTimoutEnabled, activityTimoutTime}) => {
|
module.exports = (win, { activityTimoutEnabled, activityTimoutTime }) => {
|
||||||
const registerCallback = getSongInfo(win);
|
const registerCallback = getSongInfo(win);
|
||||||
|
|
||||||
// If the page is ready, register the callback
|
// If the page is ready, register the callback
|
||||||
win.on("ready-to-show", () => {
|
win.once("ready-to-show", () => {
|
||||||
rpc.on("ready", () => {
|
rpc.once("ready", () => {
|
||||||
// Register the callback
|
// Register the callback
|
||||||
registerCallback((songInfo) => {
|
registerCallback((songInfo) => {
|
||||||
|
if (songInfo.title.length === 0 && songInfo.artist.length === 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// Song information changed, so lets update the rich presence
|
// Song information changed, so lets update the rich presence
|
||||||
const activityInfo = {
|
const activityInfo = {
|
||||||
details: songInfo.title,
|
details: songInfo.title,
|
||||||
@ -36,7 +39,7 @@ module.exports = (win, {activityTimoutEnabled, activityTimoutTime}) => {
|
|||||||
activityInfo.smallImageText = "idle/paused";
|
activityInfo.smallImageText = "idle/paused";
|
||||||
// Set start the timer so the activity gets cleared after a while if enabled
|
// Set start the timer so the activity gets cleared after a while if enabled
|
||||||
if (activityTimoutEnabled)
|
if (activityTimoutEnabled)
|
||||||
clearActivity = setTimeout(()=>rpc.clearActivity(), activityTimoutTime||10,000);
|
clearActivity = setTimeout(() => rpc.clearActivity(), activityTimoutTime || 10, 000);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
// stop the clear activity timout
|
// stop the clear activity timout
|
||||||
|
|||||||
Reference in New Issue
Block a user