Skip to content

Commit 02c8207

Browse files
committed
Fix endpoint type; version bump
1 parent fdf077e commit 02c8207

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rfesi"
3-
version = "0.45.0"
3+
version = "0.45.1"
44
authors = ["Celeo <mattboulanger@fastmail.com>"]
55
edition = "2021"
66
description = "Rust API for EVE Online's ESI"

src/groups/user_interface.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl UserInterfaceGroup<'_> {
1919
.replace("{character_id}", &character_id.to_string())
2020
.replace("{type_id}", &type_id.to_string());
2121
self.esi
22-
.query("GET", RequestType::Public, &path, None, None)
22+
.query("GET", RequestType::Authenticated, &path, None, None)
2323
.await
2424
}
2525
}

0 commit comments

Comments
 (0)