mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 09:41:29 +01:00
Ignore errors when parsing books and treat them as old books
In previous versions there was a mistake with book handled which may leave books in a broken state, this tries to handle that By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
parent
130ed6bfe6
commit
63d1f2368e
@ -78,7 +78,11 @@ class CraftMetaBook extends CraftMetaItem implements BookMeta {
|
||||
for (int i = 0; i < pages.size(); i++) {
|
||||
String page = pages.getString(i);
|
||||
if (resolved) {
|
||||
page = CraftChatMessage.fromComponent(ChatSerializer.a(page));
|
||||
try {
|
||||
page = CraftChatMessage.fromComponent(ChatSerializer.a(page));
|
||||
} catch (Exception e) {
|
||||
// Ignore and treat as an old book
|
||||
}
|
||||
}
|
||||
pageArray[i] = page;
|
||||
}
|
||||
|
@ -39,7 +39,11 @@ class CraftMetaBookSigned extends CraftMetaBook implements BookMeta {
|
||||
for (int i = 0; i < pages.size(); i++) {
|
||||
String page = pages.getString(i);
|
||||
if (resolved) {
|
||||
page = CraftChatMessage.fromComponent(ChatSerializer.a(page));
|
||||
try {
|
||||
page = CraftChatMessage.fromComponent(ChatSerializer.a(page));
|
||||
} catch (Exception e) {
|
||||
// Ignore and treat as an old book
|
||||
}
|
||||
}
|
||||
pageArray[i] = page;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user