This commit is contained in:
Cynthia Foxwell 2022-09-01 22:08:23 -06:00 committed by GitHub
parent 71072cf3a3
commit 02aeca6b73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
src/plugins/ify.ts Normal file
View file

@ -0,0 +1,23 @@
import definePlugin from "../utils/types";
export default definePlugin({
name: "Ify",
description: "Disabes Spotify auto-pausing and premium checks",
author: "Cynosphere",
patches: [
{
find: '.displayName="SpotifyStore"',
replacement: {
match: /\.isPremium=.;/,
replace: ".isPremium=true;",
},
},
{
find: '.displayName="SpotifyStore"',
replacement: ["SPEAKING", "VOICE_STATE_UPDATES", "MEDIA_ENGINE_SET_DESKTOP_SOURCE"].map(event => ({
match: new RegExp(`${event}:function\\(.\\){.+?}(,|}\\))`),
replace: (_, ending) => `${event}:function(){}${ending}`,
})),
},
]
});