Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-12-24 15:20:25 +01:00
Fix NPE and API contract breakage for Component deserialization
Dieser Commit ist enthalten in:
Ursprung
8e774ea314
Commit
c6c2ff99c3
@ -31,7 +31,6 @@ import com.google.gson.JsonElement;
|
||||
import net.kyori.adventure.text.Component;
|
||||
import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.function.UnaryOperator;
|
||||
|
||||
@ -62,9 +61,14 @@ public record GsonComponentSerializerWrapper(GsonComponentSerializer source) imp
|
||||
}
|
||||
|
||||
@Override
|
||||
public @Nullable Component deserialize(@NotNull String input) {
|
||||
public @NotNull Component deserialize(@NotNull String input) {
|
||||
// See https://github.com/KyoriPowered/adventure/issues/447
|
||||
return this.serializer().fromJson(input, Component.class);
|
||||
Component component = this.serializer().fromJson(input, Component.class);
|
||||
if (component == null) {
|
||||
return Component.empty();
|
||||
}
|
||||
|
||||
return component;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren