Skip to content

Commit

Permalink
Merge pull request #57 from proshunsuke/v2.0.4
Browse files Browse the repository at this point in the history
v2.0.4
  • Loading branch information
proshunsuke authored Jun 19, 2021
2 parents 8ffb8ef + 8c2b684 commit b30a2b2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Packaging

# v2.0.4

https://github.com/proshunsuke/colmsg/pull/57

## Fix bugs

* fixed an issue that could not be saved messages because of missing member_id

# v2.0.3

https://github.com/proshunsuke/colmsg/pull/51
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "colmsg"
version = "2.0.3"
version = "2.0.4"
authors = ["proshunsuke <[email protected]>"]
categories = ["command-line-utilities"]
description="「櫻坂46メッセージ」「日向坂46メッセージ」アプリのメッセージをPCに保存します."
Expand Down
4 changes: 2 additions & 2 deletions src/http/timeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub struct TimelineMessages {
pub id: u32,
pub is_favorite: bool,
pub is_silent: bool,
pub member_id: u32,
pub member_id: Option<u32>,
pub published_at: String,
pub state: String,
pub text: Option<String>,
Expand All @@ -36,7 +36,7 @@ pub struct TimelineLetters {
pub group_id: u32,
pub id: u32,
pub is_favorite: bool,
pub member_id: u32,
pub member_id: Option<u32>,
pub opened_at: Option<String>,
pub text: String,
pub thumbnail: String,
Expand Down

0 comments on commit b30a2b2

Please sign in to comment.