1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-26 17:26:22 +00:00

fix TimeBarAllActivities

This commit is contained in:
Vendicated 2023-10-25 23:59:38 +02:00 committed by Luna
parent 80f45cf3bc
commit ea73cc0e20

View file

@ -25,10 +25,10 @@ export default definePlugin({
authors: [Devs.obscurity], authors: [Devs.obscurity],
patches: [ patches: [
{ {
find: "renderTimeBar=function", find: "}renderTimeBar(",
replacement: { replacement: {
match: /renderTimeBar=function\((.{1,3})\){.{0,50}?var/, match: /renderTimeBar\((.{1,3})\){.{0,50}?let/,
replace: "renderTimeBar=function($1){var" replace: "renderTimeBar($1){let"
} }
} }
], ],