Remove noisy notifications from notification log

This commit is contained in:
Vendicated 2023-04-13 19:15:36 +02:00
parent 3bd3012aa9
commit c6f0d0763c
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905
2 changed files with 12 additions and 6 deletions

View file

@ -102,7 +102,8 @@ function initWs(isManual = false) {
(settings.store.notifyOnAutoConnect || isManual) && showNotification({ (settings.store.notifyOnAutoConnect || isManual) && showNotification({
title: "Dev Companion Connected", title: "Dev Companion Connected",
body: "Connected to WebSocket" body: "Connected to WebSocket",
noPersist: true
}); });
}); });

View file

@ -152,7 +152,8 @@ export async function putCloudSettings() {
showNotification({ showNotification({
title: "Cloud Settings", title: "Cloud Settings",
body: "Synchronized your settings to the cloud!", body: "Synchronized your settings to the cloud!",
color: "var(--green-360)" color: "var(--green-360)",
noPersist: true
}); });
} catch (e: any) { } catch (e: any) {
cloudSettingsLogger.error("Failed to sync up", e); cloudSettingsLogger.error("Failed to sync up", e);
@ -180,7 +181,8 @@ export async function getCloudSettings(shouldNotify = true, force = false) {
if (shouldNotify) if (shouldNotify)
showNotification({ showNotification({
title: "Cloud Settings", title: "Cloud Settings",
body: "There are no settings in the cloud." body: "There are no settings in the cloud.",
noPersist: true
}); });
return false; return false;
} }
@ -190,7 +192,8 @@ export async function getCloudSettings(shouldNotify = true, force = false) {
if (shouldNotify) if (shouldNotify)
showNotification({ showNotification({
title: "Cloud Settings", title: "Cloud Settings",
body: "Your settings are up to date." body: "Your settings are up to date.",
noPersist: true
}); });
return false; return false;
} }
@ -213,7 +216,8 @@ export async function getCloudSettings(shouldNotify = true, force = false) {
if (shouldNotify) if (shouldNotify)
showNotification({ showNotification({
title: "Cloud Settings", title: "Cloud Settings",
body: "Your local settings are newer than the cloud ones." body: "Your local settings are newer than the cloud ones.",
noPersist: true,
}); });
return; return;
} }
@ -233,7 +237,8 @@ export async function getCloudSettings(shouldNotify = true, force = false) {
title: "Cloud Settings", title: "Cloud Settings",
body: "Your settings have been updated! Click here to restart to fully apply changes!", body: "Your settings have been updated! Click here to restart to fully apply changes!",
color: "var(--green-360)", color: "var(--green-360)",
onClick: () => window.DiscordNative.app.relaunch() onClick: () => window.DiscordNative.app.relaunch(),
noPersist: true
}); });
return true; return true;