Skip to content

Commit

Permalink
Use 127.0.0.1 for rider extension
Browse files Browse the repository at this point in the history
  • Loading branch information
belav committed Apr 26, 2024
1 parent 12bb939 commit f81c472
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Src/CSharpier.Rider/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

# csharpier-rider Changelog

## [1.7.3]
- Fix issue with csharpier server not working when localhost resolved to IPv6 ::1

## [1.7.2]
- Better error message when csharpier server fails to start

Expand Down
2 changes: 1 addition & 1 deletion Src/CSharpier.Rider/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

pluginGroup = com.intellij.csharpier
pluginName = csharpier
pluginVersion = 1.7.2
pluginVersion = 1.7.3

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public FormatFileResult formatFile(FormatFileParameter parameter) {
return null;
}

var url = "http://localhost:" + this.port + "/format";
var url = "http://127.0.0.1:" + this.port + "/format";


try {
Expand Down

0 comments on commit f81c472

Please sign in to comment.