Skip to content

Commit

Permalink
Bump MinecraftAuth
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Dec 26, 2024
1 parent 017261e commit 141e6a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ classtransform-mixinsdummy = { module = "net.lenni0451.classtransform:mixinsdumm
classtransform-additionalclassprovider = { module = "net.lenni0451.classtransform:additionalclassprovider", version.ref = "classtransform" }
reflect = "net.lenni0451:Reflect:1.4.0"
lambdaevents = "net.lenni0451:LambdaEvents:2.4.2"
minecraftauth = "net.raphimc:MinecraftAuth:4.1.1"
minecraftauth = "net.raphimc:MinecraftAuth:4.1.2-SNAPSHOT"
injector = "ch.jalu:injector:1.0"
grpc-proto = { module = "io.grpc:grpc-protobuf", version.ref = "grpc" }
grpc-services = { module = "io.grpc:grpc-services", version.ref = "grpc" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public HttpResponse execute(@NotNull HttpRequest httpRequest) throws IOException
.asByteArray()
.mapNotNull(bytes -> new HttpResponse(urlObj, code, bytes, responseHeaders))
.switchIfEmpty(
Mono.just(new HttpResponse(urlObj, code, null, responseHeaders)));
Mono.just(new HttpResponse(urlObj, code, (byte[]) null, responseHeaders)));
} catch (Exception e) {
log.error("Error while handling response", e);
return Mono.error(e);
Expand Down

0 comments on commit 141e6a9

Please sign in to comment.