Skip to content

Commit feb18c6

Browse files
committed
fix == ===
1 parent e78ec50 commit feb18c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/logic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import authSession from './authn/authSession'
66
import { SolidLogic } from 'solid-logic'
77

88
async function thisFetch (url, requestInit) {
9-
const omitCreds = requestInit && requestInit.credentials && requestInit.credentials == 'omit'
9+
const omitCreds = requestInit && requestInit.credentials && requestInit.credentials === 'omit'
1010
if (authSession.info.webId && !omitCreds) { // see https://github.com/solid/solidos/issues/114
1111
// In fact ftech should respect crentials omit itself
1212
return authSession.fetch(url, requestInit)

0 commit comments

Comments
 (0)