Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong sequence of conditions #48

Closed
lotgyero opened this issue Jun 15, 2022 · 0 comments
Closed

Wrong sequence of conditions #48

lotgyero opened this issue Jun 15, 2022 · 0 comments

Comments

@lotgyero
Copy link

lotgyero commented Jun 15, 2022

const port = 3000 || authOptions?.server?.port;

Wrong sequence of conditions

The correct sequence of conditions is as follows

const port = authOptions?.server?.port || 3000;

@lotgyero lotgyero changed the title Error Wrong sequence of conditions Jun 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant