@scrypted/client
Advanced tools
Comparing version 1.1.16 to 1.1.17
{ | ||
"name": "@scrypted/client", | ||
"version": "1.1.16", | ||
"version": "1.1.17", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/packages/client/src/index.js", |
@@ -63,3 +63,5 @@ "use strict"; | ||
const url = baseUrl ? new URL('/logout', baseUrl).toString() : '/logout'; | ||
const response = await (0, axios_1.default)(url); | ||
const response = await (0, axios_1.default)(url, { | ||
withCredentials: true, | ||
}); | ||
return response.data; | ||
@@ -66,0 +68,0 @@ } |
{ | ||
"name": "@scrypted/client", | ||
"version": "1.1.16", | ||
"version": "1.1.17", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/packages/client/src/index.js", |
@@ -77,3 +77,5 @@ import { ScryptedStatic, RTCConnectionManagement, RTCSignalingSession } from "@scrypted/types"; | ||
const url = baseUrl ? new URL('/logout', baseUrl).toString() : '/logout'; | ||
const response = await axios(url); | ||
const response = await axios(url, { | ||
withCredentials: true, | ||
}); | ||
return response.data; | ||
@@ -80,0 +82,0 @@ } |
Sorry, the diff of this file is not supported yet
351016
3692