diff --git a/src/display/fetch_stream.js b/src/display/fetch_stream.js index 479225d4f..6bdb6505e 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 ? 'omit' : 'include', + credentials: withCredentials ? 'include' : 'omit', redirect: 'follow', }; }