aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/callTimer.tsx
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/callTimer.tsx
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/callTimer.tsx')
-rw-r--r--src/plugins/callTimer.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/callTimer.tsx b/src/plugins/callTimer.tsx
index ff02256..f745bf6 100644
--- a/src/plugins/callTimer.tsx
+++ b/src/plugins/callTimer.tsx
@@ -75,7 +75,7 @@ export default definePlugin({
find: ".renderConnectionStatus=",
replacement: {
match: /(?<=renderConnectionStatus=.+\.channel,children:)\w/,
- replace: "[$&, Vencord.Plugins.plugins.CallTimer.renderTimer(this.props.channel.id)]"
+ replace: "[$&, $self.renderTimer(this.props.channel.id)]"
}
}],
renderTimer(channelId: string) {