Fix guild ghost members ._.

This commit is contained in:
Sakuhl 2018-01-02 00:10:24 +01:00
parent 5ea547e229
commit b73034104c

View File

@ -37,10 +37,10 @@ pub struct Guild {
#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Member {
pub name: String,
pub rank: Rank,
pub name: Option<String>,
pub rank: Option<Rank>,
pub contributed: u64,
pub joined: String,
pub joined: Option<String>,
pub joined_friendly: String,
}