fix error message

This commit is contained in:
Edvin Bryntesson
2024-08-20 12:29:39 +02:00
parent 23613194a7
commit 47a7117fea

View File

@@ -15,6 +15,7 @@ pub struct RegistryElement {
lazy_static! {
static ref REGISTRY: HashMap<String, RegistryElement> =
serde_json::from_str(REGISTRY_JSON).expect("Could not parse items.json registry.");
serde_json::from_str(REGISTRY_JSON).expect("Could not parse registry.json registry.");
}
pub fn get_protocol_id(category: &str, entry: &str) -> u32 {