diff options
author | Vendicated <vendicated@riseup.net> | 2023-02-14 19:20:10 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-02-14 19:20:10 +0100 |
commit | 68055977d24c25cd2d086cba173abb392059b03d (patch) | |
tree | a1209e3626ad6a03feec2bf0aa315ad18144ead8 /src/components/VencordSettings/VencordTab.tsx | |
parent | 2b0c25b45ccd66612899bb493a59d275458cd46d (diff) | |
download | Vencord-68055977d24c25cd2d086cba173abb392059b03d.tar.gz Vencord-68055977d24c25cd2d086cba173abb392059b03d.tar.bz2 Vencord-68055977d24c25cd2d086cba173abb392059b03d.zip |
NotificationAPI: Correctly request browser permissions
Diffstat (limited to 'src/components/VencordSettings/VencordTab.tsx')
-rw-r--r-- | src/components/VencordSettings/VencordTab.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/VencordSettings/VencordTab.tsx b/src/components/VencordSettings/VencordTab.tsx index 6ea1ca9..9880872 100644 --- a/src/components/VencordSettings/VencordTab.tsx +++ b/src/components/VencordSettings/VencordTab.tsx @@ -21,6 +21,7 @@ import { useSettings } from "@api/settings"; import { classNameFactory } from "@api/Styles"; import DonateButton from "@components/DonateButton"; import ErrorBoundary from "@components/ErrorBoundary"; +import { ErrorCard } from "@components/ErrorCard"; import IpcEvents from "@utils/IpcEvents"; import { Margins } from "@utils/margins"; import { identity, useAwaiter } from "@utils/misc"; @@ -141,6 +142,12 @@ function VencordSettings() { <Forms.FormTitle tag="h5">Notification Style</Forms.FormTitle> + {notifSettings.useNative !== "never" && Notification.permission === "denied" && ( + <ErrorCard style={{ padding: "1em" }} className={Margins.bottom8}> + <Forms.FormTitle tag="h5">Desktop Notification Permission denied</Forms.FormTitle> + <Forms.FormText>You have denied Notification Permissions. Thus, Desktop notifications will not work!</Forms.FormText> + </ErrorCard> + )} <Forms.FormText className={Margins.bottom8}> Some plugins may show you notifications. These come in two styles: <ul> |