chore: update for 'Vencord Desktop' -> 'Vesktop' rebrand

This commit is contained in:
V 2023-08-16 01:55:56 +02:00
parent ffdf63563b
commit ede507e80c
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905
9 changed files with 19 additions and 26 deletions

View file

@ -20,12 +20,12 @@ export function relaunch() {
if (IS_DISCORD_DESKTOP)
window.DiscordNative.app.relaunch();
else
window.VencordDesktopNative.app.relaunch();
window.VesktopNative.app.relaunch();
}
export function showItemInFolder(path: string) {
if (IS_DISCORD_DESKTOP)
window.DiscordNative.fileManager.showItemInFolder(path);
else
window.VencordDesktopNative.fileManager.showItemInFolder(path);
window.VesktopNative.fileManager.showItemInFolder(path);
}