aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManti <67705577+mantikafasi@users.noreply.github.com>2023-06-03 23:07:04 +0300
committerGitHub <noreply@github.com>2023-06-03 20:07:04 +0000
commit263fbc377eb6444d97f21642fe5be41e30f0a3e4 (patch)
tree9b1e7dbe8ae011b8c4827d9ed655fef8dc20a617 /src
parentc9c0ab5acabb07e1a9c699d72c3bbd1b7ffd1738 (diff)
downloadVencord-263fbc377eb6444d97f21642fe5be41e30f0a3e4.tar.gz
Vencord-263fbc377eb6444d97f21642fe5be41e30f0a3e4.tar.bz2
Vencord-263fbc377eb6444d97f21642fe5be41e30f0a3e4.zip
Fix ReviewDB auth (#1227)
Diffstat (limited to 'src')
-rw-r--r--src/plugins/reviewDB/index.tsx4
-rw-r--r--src/plugins/reviewDB/utils.tsx4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/reviewDB/index.tsx b/src/plugins/reviewDB/index.tsx
index 0dcb7cd..de09ac7 100644
--- a/src/plugins/reviewDB/index.tsx
+++ b/src/plugins/reviewDB/index.tsx
@@ -79,8 +79,8 @@ export default definePlugin({
addContextMenuPatch("guild-header-popout", guildPopoutPatch);
if (user.banInfo) {
- const endDate = new Date(user.banInfo.banEndDate).getTime();
- if (endDate > Date.now() && (s.user?.banInfo?.banEndDate ?? 0) < endDate) {
+ const endDate = new Date(user.banInfo.banEndDate);
+ if (endDate.getTime() > Date.now() && (s.user?.banInfo?.banEndDate ?? 0) < endDate.getTime()) {
Alerts.show({
title: "You have been banned from ReviewDB",
body: (
diff --git a/src/plugins/reviewDB/utils.tsx b/src/plugins/reviewDB/utils.tsx
index 67d043d..da800b0 100644
--- a/src/plugins/reviewDB/utils.tsx
+++ b/src/plugins/reviewDB/utils.tsx
@@ -50,9 +50,9 @@ export function authorize(callback?: any) {
permissions={0n}
clientId="915703782174752809"
cancelCompletesFlow={false}
- callback={async (u: string) => {
+ callback={async (response: any) => {
try {
- const url = new URL(u);
+ const url = new URL(response.location);
url.searchParams.append("clientMod", "vencord");
const res = await fetch(url, {
headers: new Headers({ Accept: "application/json" })