Skip to content

Commit e5aa25b

Browse files
fix linting error
1 parent db5c243 commit e5aa25b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/server/services/SolidStorage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ async function getSolidFetchAndPodUrl(req) {
408408
}
409409

410410
const authenticatedFetch = await getSolidFetch(req);
411-
const podUrl = req.session?.solidCachedPodUrl ?? await getPodUrl(openidId, authenticatedFetch);
411+
const podUrl = req.session?.solidCachedPodUrl ?? (await getPodUrl(openidId, authenticatedFetch));
412412
if (req.session) {
413413
req.session.solidCachedPodUrl = podUrl;
414414
req.session.solidCachedPodUrlWebId = openidId;

0 commit comments

Comments
 (0)