-
Notifications
You must be signed in to change notification settings - Fork 0
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
Claudeでの解析 #26
Claudeでの解析 #26
Conversation
b16c740
to
98f50b4
Compare
var baseUri = new Uri(root); | ||
var requestUri = new Uri(baseUri, path); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uriを経由するようにした理由は何ですか?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
単純にhttpclientが使われているのと、元の結合方法だとroot//pathになったのでどっちに/をいれるのかを考えたくないからです
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
外部に公開しているわけでもないので/
あるなしの両方を許容する必要はないと思います。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uriを経由したほうが安全だと思うのでこのほうが良いと思います。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
実行したらデバッグ時に自明にわかるバグなので別にそこまでする必要はないと思います。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
いま思い出しましたが、一度間違えてrootを入力後にアプリを終了させると、mockに切り替えない限りアプリが起動できなくなる(StyleBertVtisにアクセスできない->エラー->アプリ終了)のでダメです。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
それはすみません。こちらの実装の問題ですので #40 で修正します
Closes #25