Skip to content

Commit

Permalink
Fix impl version string
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Jul 22, 2024
1 parent 3e2533f commit 5eb1f57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public ProtocolVersion getClientProtocol(UserConnection connection) {
if (version.getVersionType() == VersionType.SPECIAL) {
return ProtocolVersion.getProtocol(VersionType.SPECIAL, version.getOriginalVersion());
} else {
return delegate.getClientProtocol(connection);
return super.getClientProtocol(connection);
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sourceSets {
main {
classTokenReplacer {
property("\${version}", project.version)
property("\${impl_version}", "git-${rootProject.name}-${project.version}:${rootProject.latestCommitHash()}")
property("\${impl_version}", "git-ViaAprilFools-${project.version}:${rootProject.latestCommitHash()}")
}
}
}

0 comments on commit 5eb1f57

Please sign in to comment.