Skip to content

Commit b36734a

Browse files
chore: fix linting
1 parent 9882bea commit b36734a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

api/server/services/SolidStorage.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,8 @@ async function getConvosByCursorFromSolid(req, options = {}) {
17311731
});
17321732

17331733
// Check if error is a 404 (container doesn't exist) - use status only
1734-
const isNotFound = errorStatus === 404 || errorStatus === '404' || error?.response?.status === 404;
1734+
const isNotFound =
1735+
errorStatus === 404 || errorStatus === '404' || error?.response?.status === 404;
17351736

17361737
if (isNotFound) {
17371738
// Container doesn't exist, return empty result (this is expected for new users)

0 commit comments

Comments
 (0)