Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/auth/auth.guard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export class AuthGuard implements CanActivate {

if (isValid && isPublicAccess && request?.method === 'GET') {
request.has_write_access = true;
return isValid;
}

return isValid;
return false;
} catch (error) {
console.error('Public token parse error', error.message);
return false;
Expand Down