We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 980d5b8 commit eb37117Copy full SHA for eb37117
lib/services/notebooklm/client.ts
@@ -123,6 +123,8 @@ export class NotebookLMClient {
123
this.auth.sessionId
124
);
125
126
+ console.log(`[NotebookLM] RPC ${methodId} URL: ${url}`);
127
+ console.log(`[NotebookLM] RPC ${methodId} body length: ${body.length}`);
128
const response = await fetchWithTimeout(
129
url,
130
{
@@ -132,6 +134,7 @@ export class NotebookLMClient {
132
134
Cookie: this.auth.cookieHeader,
133
135
},
136
body,
137
+ cache: 'no-store' as RequestCache,
138
139
timeoutMs ?? DEFAULT_FETCH_TIMEOUT_MS
140
0 commit comments