Skip to content

Commit

Permalink
Add: Add missing is_muted_thread field for Response of notes/state
Browse files Browse the repository at this point in the history
  • Loading branch information
poppingmoon committed Apr 22, 2023
1 parent e66a95d commit 48f0992
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion misskey-api/src/endpoint/notes/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ pub struct Request {
#[serde(rename_all = "camelCase")]
pub struct Response {
pub is_favorited: bool,
pub is_watching: bool,
#[cfg(feature = "12-95-0")]
#[cfg_attr(docsrs, doc(cfg(feature = "12-95-0")))]
pub is_muted_thread: bool,
}

impl misskey_core::Request for Request {
Expand Down

0 comments on commit 48f0992

Please sign in to comment.