Skip to content

Commit

Permalink
Merge pull request #44 from i10416/fix/app-signer-is-missing
Browse files Browse the repository at this point in the history
fix: appSigner is sometimes absent
  • Loading branch information
i10416 authored Mar 9, 2024
2 parents 04f2777 + 529d698 commit b9c3645
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "firebase-messaging-rs"
version = "0.8.1"
version = "0.8.2"
authors = [
"Yoichiro ITO <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion src/topic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ pub struct TopicInfoResponse {
pub platform: String,
/// example: "1a2bc3d4e5"
#[serde(rename = "appSigner")]
pub app_signer: String,
pub app_signer: Option<String>,
/// If and only if user specifies `details` flag on request, this field may `Some<Rel>`.
pub rel: Option<Rel>,
}
Expand Down

0 comments on commit b9c3645

Please sign in to comment.