diff --git a/src/display/fetch_stream.js b/src/display/fetch_stream.js index 12cd4008b..59955a312 100644 --- a/src/display/fetch_stream.js +++ b/src/display/fetch_stream.js @@ -26,7 +26,7 @@ function createFetchOptions(headers, withCredentials) { method: 'GET', headers, mode: 'cors', - credentials: withCredentials ? 'include' : 'omit', + credentials: withCredentials ? 'include' : 'same-origin', redirect: 'follow', }; }