Skip to content

Commit 480b2ed

Browse files
committed
use more specific codecs in click event actions
1 parent dfc3884 commit 480b2ed

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

paper-server/src/main/java/io/papermc/paper/adventure/AdventureCodecs.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import com.mojang.serialization.Codec;
55
import com.mojang.serialization.DataResult;
66
import com.mojang.serialization.MapCodec;
7+
import java.net.URI;
78
import java.util.Collections;
89
import java.util.List;
910
import java.util.Map;
@@ -92,16 +93,16 @@ public final class AdventureCodecs {
9293
* Click
9394
*/
9495
static final MapCodec<ClickEvent> OPEN_URL_CODEC = mapCodec((instance) -> instance.group(
95-
Codec.STRING.fieldOf("url").forGetter(a -> !a.value().contains("://") ? "https://" + a.value() : a.value())
96-
).apply(instance, ClickEvent::openUrl));
96+
ExtraCodecs.UNTRUSTED_URI.fieldOf("url").forGetter(a -> URI.create(!a.value().contains("://") ? "https://" + a.value() : a.value()))
97+
).apply(instance, (url) -> ClickEvent.openUrl(url.toString())));
9798
static final MapCodec<ClickEvent> OPEN_FILE_CODEC = mapCodec((instance) -> instance.group(
9899
Codec.STRING.fieldOf("path").forGetter(ClickEvent::value)
99100
).apply(instance, ClickEvent::openFile));
100101
static final MapCodec<ClickEvent> RUN_COMMAND_CODEC = mapCodec((instance) -> instance.group(
101-
Codec.STRING.fieldOf("command").forGetter(ClickEvent::value)
102+
ExtraCodecs.CHAT_STRING.fieldOf("command").forGetter(ClickEvent::value)
102103
).apply(instance, ClickEvent::runCommand));
103104
static final MapCodec<ClickEvent> SUGGEST_COMMAND_CODEC = mapCodec((instance) -> instance.group(
104-
Codec.STRING.fieldOf("command").forGetter(ClickEvent::value)
105+
ExtraCodecs.CHAT_STRING.fieldOf("command").forGetter(ClickEvent::value)
105106
).apply(instance, ClickEvent::suggestCommand));
106107
static final MapCodec<ClickEvent> CHANGE_PAGE_CODEC = mapCodec((instance) -> instance.group(
107108
ExtraCodecs.POSITIVE_INT.fieldOf("page").forGetter(a -> Integer.parseInt(a.value()))

0 commit comments

Comments
 (0)