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 6510812 commit 1f3a65dCopy full SHA for 1f3a65d
web/js/index.js
@@ -140,7 +140,7 @@ async function tryCreateConversationId(trycount = 0) {
140
const conversationRes = await fetch('/turing/conversation/create', {
141
credentials: 'include',
142
}).then(async (res) => {
143
- if (res.status === 200 && +res.headers.get('content-length') > 0) {
+ if (res.status === 200 && res.body && !res.body.locked) {
144
return await res.json();
145
} else {
146
return 'error';
web/sw.js
@@ -56,7 +56,7 @@ workbox.precaching.precacheAndRoute([
56
},
57
{
58
url: '/web/js/index.js',
59
- revision: '2023.05.06',
+ revision: '2023.05.06.11',
60
61
// html
62
0 commit comments