-
Notifications
You must be signed in to change notification settings - Fork 6
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
Fix: 謎のnullチェック #563
Fix: 謎のnullチェック #563
Conversation
이 PR에 의한 api.json 차이 차이점은 여기에서 볼 수 있음--- base
+++ head
@@ -55808,11 +55808,7 @@
"type": "string"
},
"host": {
- "type": [
- "string",
- "null"
- ],
- "default": null
+ "type": "string"
}
},
"required": [
@@ -55963,11 +55959,7 @@
"type": "string"
},
"host": {
- "type": [
- "string",
- "null"
- ],
- "default": null
+ "type": "string"
}
},
"required": [ |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #563 +/- ##
========================================
Coverage 40.08% 40.08%
========================================
Files 1696 1696
Lines 235633 235675 +42
Branches 3930 3947 +17
========================================
+ Hits 94442 94478 +36
- Misses 140526 140572 +46
+ Partials 665 625 -40 ☔ View full report in Codecov by Sentry. |
string or nullがnullだったらnullにしてるのか。いらんな |
これtypecheck落ちるんだ |
typeormのIsNullはnullではない...? |
IsNull = undefined |
api定義的に見るとnullの方が自然な気がする。host未定義じゃなくて無いじゃん |
string or null or undefinedでAPI定義されてたのか。うーんstring or nullの方がそれっぽい気がする |
What
nullチェック消した
Why
#514 でなぜか追加してた
Additional info (optional)
要らなくない?
Checklist