small nitpicks and basic changes
This commit is contained in:
parent
4b8f374856
commit
23b4c74411
4 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "VencordDesktop",
|
||||
"name": "vencord-desktop",
|
||||
"version": "0.4.0",
|
||||
"private": true,
|
||||
"description": "",
|
||||
|
|
|
@ -24,7 +24,8 @@ let lastIndex: null | number = -1;
|
|||
export function setBadgeCount(count: number) {
|
||||
switch (process.platform) {
|
||||
case "linux":
|
||||
if (count === -1) count = 0;
|
||||
// used to be if (count === -1)
|
||||
if (count < 0) count = 0;
|
||||
app.setBadgeCount(count);
|
||||
break;
|
||||
case "darwin":
|
||||
|
|
BIN
static/shiggy.gif
Normal file
BIN
static/shiggy.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
|
@ -32,7 +32,7 @@
|
|||
<div class="wrapper">
|
||||
<img
|
||||
draggable="false"
|
||||
src="https://cdn.discordapp.com/emojis/1024751291504791654.gif?size=512"
|
||||
src="../shiggy.gif"
|
||||
alt="shiggy"
|
||||
role="presentation"
|
||||
/>
|
||||
|
|
Reference in a new issue