@payez/next-mvp 4.0.25 → 4.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -91,7 +91,7 @@ async function tryBetterAuthSession(requestCookies) {
|
|
|
91
91
|
if (!result?.session || !result?.user) {
|
|
92
92
|
return null;
|
|
93
93
|
}
|
|
94
|
-
// Read IDP tokens from BA Redis session (stored by
|
|
94
|
+
// Read IDP tokens from BA Redis session (stored by callback route after OAuth)
|
|
95
95
|
let idpTokens = null;
|
|
96
96
|
try {
|
|
97
97
|
const { getRedis } = await Promise.resolve().then(() => __importStar(require('../lib/redis')));
|
package/package.json
CHANGED
|
@@ -66,7 +66,7 @@ async function tryBetterAuthSession(
|
|
|
66
66
|
return null;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
-
// Read IDP tokens from BA Redis session (stored by
|
|
69
|
+
// Read IDP tokens from BA Redis session (stored by callback route after OAuth)
|
|
70
70
|
let idpTokens: any = null;
|
|
71
71
|
try {
|
|
72
72
|
const { getRedis } = await import('../lib/redis');
|