Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@ai-sdk/provider": "2.0.0",
"@ai-sdk/react": "2.0.76",
"@asteasolutions/zod-to-openapi": "8.1.0",
"@better-auth/sso": "1.3.28",
"@better-auth/sso": "1.3.7",
"@date-fns/tz": "1.4.1",
"@dub/analytics": "0.0.32",
"@formkit/auto-animate": "0.9.0",
Expand Down Expand Up @@ -91,7 +91,7 @@
"@vercel/analytics": "1.5.0",
"@vercel/speed-insights": "1.2.0",
"ai": "5.0.76",
"better-auth": "1.3.28",
"better-auth": "1.3.7",
"braintrust": "0.4.6",
"capital-case": "2.0.0",
"cheerio": "1.0.0",
Expand All @@ -108,14 +108,14 @@
"embla-carousel-react": "8.6.0",
"encoding": "0.1.13",
"fast-deep-equal": "3.1.3",
"fast-xml-parser": "5.3.0",
"fast-xml-parser": "5.2.5",
"gmail-api-parse-message": "2.1.2",
"google": "link:@next/third-parties/google",
"he": "1.2.0",
"html-to-text": "9.0.5",
"ioredis": "5.8.2",
"jotai": "2.15.0",
"jsdom": "27.0.1",
"jsdom": "26.1.0",
"json5": "2.2.3",
"jsonrepair": "3.13.1",
"linkify-react": "4.3.2",
Expand Down
3 changes: 2 additions & 1 deletion apps/web/utils/reply-tracker/label-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ export async function applyThreadStatusLabel({
if (!labelId) {
const label = providerLabels.find((l) => l.name === getRuleLabel(type));
if (!label?.id) {
logger.error("Failed to get label ID", { type });
// Label doesn't exist yet - this is expected if user hasn't set up or used all status types yet
logger.info("Skipping removal of non-existent label", { type });
continue;
}
labelId = label.id;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@types/react-dom": "19.0.4"
},
"patchedDependencies": {
"better-auth@1.3.28": "patches/better-auth@1.3.28.patch"
"better-auth@1.3.7": "patches/better-auth@1.3.7.patch"
Comment thread
elie222 marked this conversation as resolved.
}
}
}
12 changes: 0 additions & 12 deletions patches/better-auth@1.3.28.patch

This file was deleted.

12 changes: 12 additions & 0 deletions patches/better-auth@1.3.7.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/dist/cookies/index.mjs b/dist/cookies/index.mjs
index f4c53b8b90f61589ffe873e22d756bf081144f2f..993b62d63705fe3ffee1bfea69386d939b482c77 100644
--- a/dist/cookies/index.mjs
+++ b/dist/cookies/index.mjs
@@ -259,6 +259,7 @@ async function setCookieCache(ctx, session) {
},
{}
);
+ session.user.image = null;
const sessionData = { session: filteredSession, user: session.user };
const expiresAtDate = getDate(
ctx.context.authCookies.sessionData.options.maxAge || 60,
Loading
Loading