aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/spotifyControls
diff options
context:
space:
mode:
authorfawn <fawn@envs.net>2023-02-10 21:41:49 +0000
committerGitHub <noreply@github.com>2023-02-10 22:41:49 +0100
commitd95be1acbaa282c53508a33d85cdda2ea76c50da (patch)
tree48145b1ff9c4455956d48c8b3c840323167fa96e /src/plugins/spotifyControls
parent1d995e58f515dbeb908ba34bf70f829bfd3ccfac (diff)
downloadVencord-d95be1acbaa282c53508a33d85cdda2ea76c50da.tar.gz
Vencord-d95be1acbaa282c53508a33d85cdda2ea76c50da.tar.bz2
Vencord-d95be1acbaa282c53508a33d85cdda2ea76c50da.zip
refactor: update plugins to use `$self` (#478)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/plugins/spotifyControls')
-rw-r--r--src/plugins/spotifyControls/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/spotifyControls/index.tsx b/src/plugins/spotifyControls/index.tsx
index 86e187e..5d82998 100644
--- a/src/plugins/spotifyControls/index.tsx
+++ b/src/plugins/spotifyControls/index.tsx
@@ -55,7 +55,7 @@ export default definePlugin({
// return React.createElement(AccountPanel, { ..., showTaglessAccountPanel: blah })
match: /return ?(.{0,30}\(.{1,3},\{[^}]+?,showTaglessAccountPanel:.+?\}\))/,
// return [Player, Panel]
- replace: "return [Vencord.Plugins.plugins.SpotifyControls.renderPlayer(),$1]"
+ replace: "return [$self.renderPlayer(),$1]"
}
},
// Adds POST and a Marker to the SpotifyAPI (so we can easily find it)